X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fmain.c;h=3172485a23e77d025cfc9c18cdf972a44c3d4910;hb=0ae17bd9d21166d8274d4b4da594d05efd0ae87d;hp=7de1d1374832dfb72915d3d0ea023fd70d7da5d6;hpb=8972198dbc3630137fc364c36f61d65abc36b21a;p=ppp.git diff --git a/pppd/main.c b/pppd/main.c index 7de1d13..3172485 100644 --- a/pppd/main.c +++ b/pppd/main.c @@ -18,7 +18,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: main.c,v 1.4 1993/12/15 00:17:43 paulus Exp $"; +static char rcsid[] = "$Id: main.c,v 1.5 1994/01/10 00:18:59 paulus Exp $"; #endif #define SETSID @@ -339,7 +339,16 @@ main(argc, argv) signal(SIGUSR1, incdebug); /* Increment debug flag */ signal(SIGUSR2, nodebug); /* Reset debug flag */ - + + /* + * Block SIGIOs and SIGPOLLs for now + */ + sigemptyset(&mask); + sigaddset(&mask, SIGIO); +#ifdef STREAMS + sigaddset(&mask, SIGPOLL); +#endif + sigprocmask(SIG_BLOCK, &mask, NULL); /* * Open the serial device and set it up to be the ppp interface.