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.18-385-g714bd26


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  714bd261e8d24273b3c34d8e0c3f1d611b79ef6f (commit)
      from  7ab44563a9c8118ce47da29919540c793f549774 (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=714bd261e8d24273b3c34d8e0c3f1d611b79ef6f

commit 714bd261e8d24273b3c34d8e0c3f1d611b79ef6f
Author: Andreas Schwab <schwab@suse.de>
Date:   Mon Nov 11 16:28:03 2013 +0100

    Fix country_num element in LC_ADDRESS for C locale

diff --git a/ChangeLog b/ChangeLog
index e9089c7..60f8a88 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-11-14  Andreas Schwab  <schwab@suse.de>
+
+	* locale/C-address.c (_nl_C_LC_ADDRESS): Set country_num to zero
+	word instead of empty string.
+
 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
 
 	* sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
diff --git a/locale/C-address.c b/locale/C-address.c
index 060a956..fe6e69e 100644
--- a/locale/C-address.c
+++ b/locale/C-address.c
@@ -38,7 +38,7 @@ const struct __locale_data _nl_C_LC_ADDRESS attribute_hidden =
     { .string = "" },
     { .string = "" },
     { .string = "" },
-    { .string = "" },
+    { .word = 0 },
     { .string = "" },
     { .string = "" },
     { .string = "" },

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

Summary of changes:
 ChangeLog          |    5 +++++
 locale/C-address.c |    2 +-
 2 files changed, 6 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]