]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 17 Apr 2003 18:39:26 +0000 (18:39 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 17 Apr 2003 18:39:26 +0000 (18:39 +0000)
* signal/sigrelse.c (sigrelse): Use sigdelset and not __sigdelset.
The signal number must be checked.

ChangeLog
signal/sigrelse.c

index b1f208641b5aa8b705731fc520e2e53081b688b1..780dd9f3fcea81649280a933a65b9dec925c1fb6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-04-17  Ulrich Drepper  <drepper@redhat.com>
 
+       * signal/sigrelse.c (sigrelse): Use sigdelset and not __sigdelset.
+       The signal number must be checked.
        * signal/sighold.c (sighold): Use sigaddset and not __sigaddset.
        The signal number must be checked [PR libc/5004].
 
index 77d90612241e3b819382ac17671e03c62b61a9d1..ada72727c025c9f148cbd7bafec24c4111c57a42 100644 (file)
@@ -1,5 +1,5 @@
 /* Remove SIG from the calling process' signal mask.
-   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000, 2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
 
@@ -33,7 +33,7 @@ sigrelse (sig)
     return -1;
 
   /* Remove the specified signal.  */
-  if (__sigdelset (&set, sig) < 0)
+  if (sigdelset (&set, sig) < 0)
     return -1;
 
   /* Set the new mask.  */