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.9000-1207-g80463dc


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  80463dc69d0018d03740d440bdcaff2a0d054aee (commit)
      from  2e52dff41fcf176107a6396cacd03de79390b247 (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=80463dc69d0018d03740d440bdcaff2a0d054aee

commit 80463dc69d0018d03740d440bdcaff2a0d054aee
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Mon Jan 29 00:05:20 2018 +0100

    hurd: Fix _POSIX_VDISABLE value
    
    	* sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_VDISABLE): Set to '\0'
    	instead of invalid -1.

diff --git a/ChangeLog b/ChangeLog
index babe572..6ee1d44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -99,6 +99,8 @@
 	* mach/Makefile (user-interfaces): Add mach/gnumach.
 	* sysdeps/mach/configure.ac (mach_interface_list): Add gnumach.
 	* sysdeps/mach/configure (mach_interface_list): Regenerate.
+	* sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_VDISABLE): Set to '\0'
+	instead of invalid -1.
 
 2008-12-18  Thomas Schwinge  <tschwinge@gnu.org>
 
diff --git a/sysdeps/mach/hurd/bits/posix_opt.h b/sysdeps/mach/hurd/bits/posix_opt.h
index 03082ad..828d7ff 100644
--- a/sysdeps/mach/hurd/bits/posix_opt.h
+++ b/sysdeps/mach/hurd/bits/posix_opt.h
@@ -53,7 +53,7 @@
 
 /* Elements of the `c_cc' member of `struct termios' structure
    can be disabled by using the value _POSIX_VDISABLE.  */
-#define _POSIX_VDISABLE			((unsigned char) -1)
+#define _POSIX_VDISABLE			'\0'
 
 
 /* Different Hurd filesystems might do these differently.

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

Summary of changes:
 ChangeLog                          |    2 ++
 sysdeps/mach/hurd/bits/posix_opt.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]