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.17-589-g1324e37


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  1324e37f2e36fb641b82ad7b353fa28d5d57e44b (commit)
      from  0695940b8ab4b7e69492e8ea071d19fc17dda092 (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=1324e37f2e36fb641b82ad7b353fa28d5d57e44b

commit 1324e37f2e36fb641b82ad7b353fa28d5d57e44b
Author: Roland McGrath <roland@hack.frob.com>
Date:   Wed May 1 09:27:09 2013 -0700

    Add missing #include in sysdeps/posix/opendir.c.

diff --git a/ChangeLog b/ChangeLog
index f9a9bdc..cd846f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-01  Roland McGrath  <roland@hack.frob.com>
+
+	* sysdeps/posix/opendir.c: Include <sys/param.h> to get MIN/MAX macros.
+
 2013-05-01  Richard Smith  <richard@metafoo.co.uk>
 
 	* misc/sys/cdefs.h (__extern_inline, __extern_always_inline)
diff --git a/sysdeps/posix/opendir.c b/sysdeps/posix/opendir.c
index 0efeb5d..ddfc3a7 100644
--- a/sysdeps/posix/opendir.c
+++ b/sysdeps/posix/opendir.c
@@ -22,6 +22,7 @@
 #include <stdlib.h>
 #include <dirent.h>
 #include <fcntl.h>
+#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <unistd.h>

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

Summary of changes:
 ChangeLog               |    4 ++++
 sysdeps/posix/opendir.c |    1 +
 2 files changed, 5 insertions(+), 0 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]