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.12-13-g3f7dcb2


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  3f7dcb2b0f9f2e771f2fd0139f032198c2d01ba9 (commit)
      from  265bb1ce9423afb46c9627865fdd7a90ce8e85fc (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=3f7dcb2b0f9f2e771f2fd0139f032198c2d01ba9

commit 3f7dcb2b0f9f2e771f2fd0139f032198c2d01ba9
Author: Roland McGrath <roland@redhat.com>
Date:   Fri May 7 16:23:03 2010 -0700

    Fix a const warning in ldconfig.

diff --git a/ChangeLog b/ChangeLog
index 136c904..952952a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-05-07  Roland McGrath  <roland@redhat.com>
+
+	* elf/ldconfig.c (main): Add a const.
+
 2010-05-06  Ulrich Drepper  <drepper@redhat.com>
 
 	* nss/getent.c (idn_flags): Default to AI_IDN|AI_CANONIDN.
diff --git a/elf/ldconfig.c b/elf/ldconfig.c
index 00664e6..b4af31e 100644
--- a/elf/ldconfig.c
+++ b/elf/ldconfig.c
@@ -1357,7 +1357,7 @@ main (int argc, char **argv)
 	add_system_dir (LIBDIR);
     }
 
-  char *aux_cache_file = _PATH_LDCONFIG_AUX_CACHE;
+  const char *aux_cache_file = _PATH_LDCONFIG_AUX_CACHE;
   if (opt_chroot)
     {
       aux_cache_file = chroot_canon (opt_chroot, aux_cache_file);

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

Summary of changes:
 ChangeLog      |    4 ++++
 elf/ldconfig.c |    2 +-
 2 files changed, 5 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]