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.26-274-g0196939


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  01969395db01fedcd3fb76d76654b24908e5757b (commit)
      from  06cf9d31d7caa408b35f194cdbdc17462eb935c2 (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=01969395db01fedcd3fb76d76654b24908e5757b

commit 01969395db01fedcd3fb76d76654b24908e5757b
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Sep 3 02:22:00 2017 +0200

    hurd: Fix getting ssize_t for <sys/socket.h>
    
    	* sysdeps/mach/hurd/bits/socket.h: Include <sys/types.h> instead of
    	just <bits/types.h>.

diff --git a/ChangeLog b/ChangeLog
index 912a3ce..cf6866c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
 	* sysdeps/generic/sigsetops.h: Remove spurious #endif.
 	(__sigismember, __sigaddset, __sigdelset): Fix referencing set
 	parameter.
+	* sysdeps/mach/hurd/bits/socket.h: Include <sys/types.h> instead of
+	just <bits/types.h>.
 
 2017-09-01  Joseph Myers  <joseph@codesourcery.com>
 
diff --git a/sysdeps/mach/hurd/bits/socket.h b/sysdeps/mach/hurd/bits/socket.h
index 6eb09a0..9a412f0 100644
--- a/sysdeps/mach/hurd/bits/socket.h
+++ b/sysdeps/mach/hurd/bits/socket.h
@@ -29,7 +29,7 @@
 #include <stddef.h>
 
 #include <limits.h>		/* XXX Is this allowed?  */
-#include <bits/types.h>
+#include <sys/types.h>
 
 /* Type for length arguments in socket calls.  */
 #ifndef __socklen_t_defined

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

Summary of changes:
 ChangeLog                       |    2 ++
 sysdeps/mach/hurd/bits/socket.h |    2 +-
 2 files changed, 3 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]