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.18-435-ga7624ed


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  a7624ed987f060d0079f7331a9b12ea250c81cd6 (commit)
      from  67ea2c9a69598edc6487c4b68942ab7b6bb27ad9 (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=a7624ed987f060d0079f7331a9b12ea250c81cd6

commit a7624ed987f060d0079f7331a9b12ea250c81cd6
Author: Carlos O'Donell <carlos@redhat.com>
Date:   Mon Nov 25 14:57:42 2013 -0500

    Fix typo in sys/ptrace.h.
    
    The event code is PTRACE_EVENT_SECCOMP, not PTRAVE_EVENT_SECCOMP.
    This patch fixes the V->C typo. There are no ABI issues since the
    number remains the same for the code. Code using the old wrong
    name will need to be updated.

diff --git a/ChangeLog b/ChangeLog
index 9fcda27..2971fcc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-11-25  Carlos O'Donell  <carlos@redhat.com>
+
+	[BZ #16245]
+	* sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes):
+	Rename PTRAVE_EVENT_SECCOMP to PTRACE_EVENT_SECCOMP.
+
 2013-11-25  Joseph Myers  <joseph@codesourcery.com>
 
 	* sysdeps/powerpc/nofpu/fenv_libc.h (__fegetround): New macro.
diff --git a/NEWS b/NEWS
index 0f70fc1..bc68143 100644
--- a/NEWS
+++ b/NEWS
@@ -19,7 +19,7 @@ Version 2.19
   15905, 15909, 15917, 15919, 15921, 15923, 15939, 15948, 15963, 15966,
   15985, 15988, 15997, 16032, 16034, 16036, 16037, 16041, 16055, 16071,
   16072, 16074, 16078, 16103, 16112, 16143, 16144, 16146, 16150, 16151,
-  16153, 16167, 16172.
+  16153, 16167, 16172, 16245.
 
 * CVE-2012-4412 The strcoll implementation caches indices and rules for
   large collation sequences to optimize multiple passes.  This cache
diff --git a/sysdeps/unix/sysv/linux/sys/ptrace.h b/sysdeps/unix/sysv/linux/sys/ptrace.h
index 2b78565..8aa4c08 100644
--- a/sysdeps/unix/sysv/linux/sys/ptrace.h
+++ b/sysdeps/unix/sysv/linux/sys/ptrace.h
@@ -184,7 +184,7 @@ enum __ptrace_eventcodes
   PTRACE_EVENT_EXEC	= 4,
   PTRACE_EVENT_VFORK_DONE = 5,
   PTRACE_EVENT_EXIT	= 6,
-  PTRAVE_EVENT_SECCOMP  = 7
+  PTRACE_EVENT_SECCOMP  = 7
 };
 
 /* Arguments for PTRACE_PEEKSIGINFO.  */

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

Summary of changes:
 ChangeLog                            |    6 ++++++
 NEWS                                 |    2 +-
 sysdeps/unix/sysv/linux/sys/ptrace.h |    2 +-
 3 files changed, 8 insertions(+), 2 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]