This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.19-372-g7a1a51b


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  7a1a51b51341e0d0a35bf021e4104e0c9ae5bf63 (commit)
      from  e393b1d7ed75efd756ef452c2072974c4d059bec (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=7a1a51b51341e0d0a35bf021e4104e0c9ae5bf63

commit 7a1a51b51341e0d0a35bf021e4104e0c9ae5bf63
Author: Roland McGrath <roland@hack.frob.com>
Date:   Thu May 8 10:47:35 2014 -0700

    Fix -Wundef for _UTSNAME_DOMAIN_LENGTH.

diff --git a/ChangeLog b/ChangeLog
index 62a91df..e9e707a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-05-08  Roland McGrath  <roland@hack.frob.com>
+
+	* bits/utsname.h (_UTSNAME_DOMAIN_LENGTH): New macro, set to 0.
+
 2014-05-07  Steve Ellcey  <sellcey@mips.com>
 
 	[BZ# 16922]
diff --git a/bits/utsname.h b/bits/utsname.h
index e41c438..5ca7b89 100644
--- a/bits/utsname.h
+++ b/bits/utsname.h
@@ -21,4 +21,8 @@
 
 /* The size of the character arrays used to hold the information
    in a `struct utsname'.  Enlarge this as necessary.  */
-#define	_UTSNAME_LENGTH	1024
+#define	_UTSNAME_LENGTH		1024
+
+/* If nonzero, the size of of the `domainname` field in `struct utsname'.
+   This is zero to indicate that there should be no such field at all.  */
+#define _UTSNAME_DOMAIN_LENGTH	0

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog      |    4 ++++
 bits/utsname.h |    6 +++++-
 2 files changed, 9 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]