diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-06 03:05:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-06 03:05:38 +0000 |
commit | 432cf458f981cb1e9c9051cc39217fc7773f45dd (patch) | |
tree | 1ebe3d68a2d0bccf60b52d282f9fd3b1fb8dbac0 | |
parent | 5cd09cd6482726257275ce45e39c5dd7dcbe9251 (diff) | |
download | glibc-432cf458f981cb1e9c9051cc39217fc7773f45dd.tar glibc-432cf458f981cb1e9c9051cc39217fc7773f45dd.tar.gz glibc-432cf458f981cb1e9c9051cc39217fc7773f45dd.tar.bz2 glibc-432cf458f981cb1e9c9051cc39217fc7773f45dd.zip |
Update.
* debug/catchsegv.sh: Fix typo in error messsage.
Reported by John Levon <leven@movementarian.org>.
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | debug/catchsegv.sh | 6 |
2 files changed, 6 insertions, 3 deletions
@@ -1,5 +1,8 @@ 2003-02-05 Ulrich Drepper <drepper@redhat.com> + * debug/catchsegv.sh: Fix typo in error messsage. + Reported by John Levon <leven@movementarian.org>. + * sysdeps/unix/sysv/linux/posix_fadvise.c: New file. * sysdeps/unix/sysv/linux/syscalls.list: Add posix_fadvise64 syscall. * sysdeps/unix/sysv/linux/alpha/syscalls.list: Likewise. diff --git a/debug/catchsegv.sh b/debug/catchsegv.sh index 6781ac1aab..8379c6b8d6 100755 --- a/debug/catchsegv.sh +++ b/debug/catchsegv.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. +# Copyright (C) 1998, 1999, 2001, 2003 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. @@ -19,7 +19,7 @@ # 02111-1307 USA. if test $# -eq 0; then - echo "$0: missing programm name" >&2 + echo "$0: missing program name" >&2 echo "Try \`$0 --help' for more information." >&2 exit 1 fi @@ -38,7 +38,7 @@ if test $# -eq 0; then ;; --v | --ve | --ver | --vers | --versi | --versio | --version) echo 'catchsegv (GNU libc) @VERSION@' - echo 'Copyright (C) 2002 Free Software Foundation, Inc. + echo 'Copyright (C) 2003 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Ulrich Drepper.' |