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-276-ged95bf5


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  ed95bf5638748068ef05ccbaa0a008b50ebecb42 (commit)
      from  dd2b31dec0c0e792bec0486d72c8a049eea4bee1 (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=ed95bf5638748068ef05ccbaa0a008b50ebecb42

commit ed95bf5638748068ef05ccbaa0a008b50ebecb42
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Sep 3 03:00:32 2017 +0200

    hurd: Fix p{read,write}v64v2.c build
    
    	* sysdeps/posix/preadv64v2.c: Use off64_t instead of off_t.
    	* sysdeps/posix/pwritev64v2.c: Use off64_t instead of off_t.

diff --git a/ChangeLog b/ChangeLog
index a4634b7..f8c12c0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,9 +6,9 @@
 	* sysdeps/mach/hurd/bits/socket.h: Include <sys/types.h> instead of
 	just <bits/types.h>.
 	* sysdeps/posix/preadv2.c: Use off_t instead of OFF_T.
-	* sysdeps/posix/preadv64v2.c: Use off_t instead of OFF_T.
+	* sysdeps/posix/preadv64v2.c: Use off64_t instead of OFF_T.
 	* sysdeps/posix/pwritev2.c: Use off_t instead of OFF_T.
-	* sysdeps/posix/pwritev64v2.c: Use off_t instead of OFF_T.
+	* sysdeps/posix/pwritev64v2.c: Use off64_t instead of OFF_T.
 
 2017-09-01  Joseph Myers  <joseph@codesourcery.com>
 
diff --git a/sysdeps/posix/preadv64v2.c b/sysdeps/posix/preadv64v2.c
index ab71f02..263f9b7 100644
--- a/sysdeps/posix/preadv64v2.c
+++ b/sysdeps/posix/preadv64v2.c
@@ -20,7 +20,7 @@
 #include <sys/uio.h>
 
 ssize_t
-preadv64v2 (int fd, const struct iovec *vector, int count, off_t offset,
+preadv64v2 (int fd, const struct iovec *vector, int count, off64_t offset,
 	    int flags)
 {
   if (flags != 0)
diff --git a/sysdeps/posix/pwritev64v2.c b/sysdeps/posix/pwritev64v2.c
index bf62d74..f340c8a 100644
--- a/sysdeps/posix/pwritev64v2.c
+++ b/sysdeps/posix/pwritev64v2.c
@@ -21,7 +21,7 @@
 
 /* Since we define no flags for pwritev2 just route to pwritev.  */
 ssize_t
-pwritev64v2 (int fd, const struct iovec *vector, int count, off_t offset,
+pwritev64v2 (int fd, const struct iovec *vector, int count, off64_t offset,
 	     int flags)
 {
   if (flags != 0)

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

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