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-151-g455d6e4


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  455d6e4373c81da49892d39f33dc312b0c54097d (commit)
      from  d952597738860d3258e4d3818494c1acdc5683fe (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=455d6e4373c81da49892d39f33dc312b0c54097d

commit 455d6e4373c81da49892d39f33dc312b0c54097d
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Sep 18 23:48:55 2016 +0200

    hurd: fix fcntl visibility
    
    	* sysdeps/posix/dup.c (__dup): Call __fcntl instead of fcntl.

diff --git a/ChangeLog b/ChangeLog
index 974a525..d614df0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2016-09-18  Samuel Thibault  <samuel.thibault@ens-lyon.org>
 
 	* intl/dcigettext.c (PATH_MAX): Call __pathconf instead of pathconf.
+	* sysdeps/posix/dup.c (__dup): Call __fcntl instead of fcntl.
 
 2016-09-15  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
diff --git a/sysdeps/posix/dup.c b/sysdeps/posix/dup.c
index abf3ff5..bbd67bc 100644
--- a/sysdeps/posix/dup.c
+++ b/sysdeps/posix/dup.c
@@ -24,7 +24,7 @@
 int
 __dup (int fd)
 {
-  return fcntl (fd, F_DUPFD, 0);
+  return __fcntl (fd, F_DUPFD, 0);
 }
 libc_hidden_def (__dup)
 weak_alias (__dup, dup)

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

Summary of changes:
 ChangeLog           |    1 +
 sysdeps/posix/dup.c |    2 +-
 2 files changed, 2 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]