diff options
author | Bill Nottingham <notting@redhat.com> | 2001-01-30 16:24:28 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-01-30 16:24:28 +0000 |
commit | 1d86729b17c914c80daff6e430d00933c658ad54 (patch) | |
tree | d2cd4f304ba721a02365f64a551124efeece8dd3 | |
parent | 679b32eb30a201b3dde5c5296afdcb73327ba41b (diff) | |
download | initscripts-1d86729b17c914c80daff6e430d00933c658ad54.tar initscripts-1d86729b17c914c80daff6e430d00933c658ad54.tar.gz initscripts-1d86729b17c914c80daff6e430d00933c658ad54.tar.bz2 initscripts-1d86729b17c914c80daff6e430d00933c658ad54.tar.xz initscripts-1d86729b17c914c80daff6e430d00933c658ad54.zip |
fix build
-rw-r--r-- | src/ppp-watch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ppp-watch.c b/src/ppp-watch.c index 3bbe9982..d74935a1 100644 --- a/src/ppp-watch.c +++ b/src/ppp-watch.c @@ -651,7 +651,7 @@ main(int argc, char **argv) { sigprocmask(SIG_UNBLOCK, &blockedsigs, NULL); sleep(timeout); sigprocmask(SIG_BLOCK, &blockedsigs, NULL); - if (!theSigterm && !theSighup && !theSigio && !theSighchld && !theSigalrm) + if (!theSigterm && !theSighup && !theSigio && !theSigchld && !theSigalrm) fork_exec(0, "/etc/sysconfig/network-scripts/ifup-ppp", "daemon", device, theBoot); // Scott Sharkey <ssharkey@linux-no-limits.com> // MAXFAIL Patch... |