diff options
author | Carlos O'Donell <carlos@redhat.com> | 2013-11-25 14:57:42 -0500 |
---|---|---|
committer | Carlos O'Donell <carlos@redhat.com> | 2013-11-25 14:57:42 -0500 |
commit | a7624ed987f060d0079f7331a9b12ea250c81cd6 (patch) | |
tree | 131f8f6bc6f0a49fc64af8075e138df6b912870a /sysdeps/unix/sysv | |
parent | 67ea2c9a69598edc6487c4b68942ab7b6bb27ad9 (diff) | |
download | glibc-a7624ed987f060d0079f7331a9b12ea250c81cd6.tar.gz glibc-a7624ed987f060d0079f7331a9b12ea250c81cd6.tar.xz glibc-a7624ed987f060d0079f7331a9b12ea250c81cd6.zip |
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.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/ptrace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/ptrace.h b/sysdeps/unix/sysv/linux/sys/ptrace.h index 2b78565db1..8aa4c087ea 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. */ |