]> git.ozlabs.org Git - ppp.git/commitdiff
Use SIGNAL not signal because the former doesn't reset the handler
authorPaul Mackerras <paulus@samba.org>
Thu, 10 Aug 1995 06:51:42 +0000 (06:51 +0000)
committerPaul Mackerras <paulus@samba.org>
Thu, 10 Aug 1995 06:51:42 +0000 (06:51 +0000)
when the signal is caught.

pppd/main.c

index 2c7d5265cf2bb5b4421463b44134f3ab9a63e1a9..632e1791d8c432436c860a3898963ccd717e8015 100644 (file)
@@ -18,7 +18,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char rcsid[] = "$Id: main.c,v 1.25 1995/07/11 06:40:58 paulus Exp $";
+static char rcsid[] = "$Id: main.c,v 1.26 1995/08/10 06:51:42 paulus Exp $";
 #endif
 
 #include <stdio.h>
 #endif
 
 #include <stdio.h>
@@ -252,8 +252,8 @@ main(argc, argv)
     SIGNAL(SIGTERM, term);             /* Terminate */
     SIGNAL(SIGCHLD, chld);
 
     SIGNAL(SIGTERM, term);             /* Terminate */
     SIGNAL(SIGCHLD, chld);
 
-    signal(SIGUSR1, toggle_debug);     /* Toggle debug flag */
-    signal(SIGUSR2, open_ccp);         /* Reopen CCP */
+    SIGNAL(SIGUSR1, toggle_debug);     /* Toggle debug flag */
+    SIGNAL(SIGUSR2, open_ccp);         /* Reopen CCP */
 
     /*
      * Lock the device if we've been asked to.
 
     /*
      * Lock the device if we've been asked to.