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.24-150-gd952597


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  d952597738860d3258e4d3818494c1acdc5683fe (commit)
      from  09cb278539d6ebb30a4de89a6bfd8bda1b085c07 (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=d952597738860d3258e4d3818494c1acdc5683fe

commit d952597738860d3258e4d3818494c1acdc5683fe
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Sep 18 23:45:12 2016 +0200

    hurd: fix pathconf visibility
    
    	* intl/dcigettext.c (PATH_MAX): Call __pathconf instead of pathconf.

diff --git a/ChangeLog b/ChangeLog
index 33b84d5..974a525 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-09-18  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+
+	* intl/dcigettext.c (PATH_MAX): Call __pathconf instead of pathconf.
+
 2016-09-15  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	* nptl/sem_init.c (__new_sem_init): Init pad value to 0.
diff --git a/intl/dcigettext.c b/intl/dcigettext.c
index 3d38de9..dd0db4e 100644
--- a/intl/dcigettext.c
+++ b/intl/dcigettext.c
@@ -187,7 +187,7 @@ static void *mempcpy (void *dest, const void *src, size_t n);
 #endif
 
 #if !defined PATH_MAX && defined _PC_PATH_MAX
-# define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX))
+# define PATH_MAX (__pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : __pathconf ("/", _PC_PATH_MAX))
 #endif
 
 /* Don't include sys/param.h if it already has been.  */

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

Summary of changes:
 ChangeLog         |    4 ++++
 intl/dcigettext.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]