diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-09-04 23:36:00 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-09-04 23:36:00 +0000 |
commit | 6e69b2a3e9a34411460d33a432a805b3eb1924d1 (patch) | |
tree | 33cfe52f5da9645a00ca15af49ceefdd612696d2 /usr.sbin/sliplogin | |
parent | 102264589c8731b5f0fb00b204e5963726ecec83 (diff) |
Replace the deprecated BSD sigsetmask/sigblock/sigpause functions with their POSIX counterparts.
Diffstat (limited to 'usr.sbin/sliplogin')
-rw-r--r-- | usr.sbin/sliplogin/sliplogin.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/sliplogin/sliplogin.c b/usr.sbin/sliplogin/sliplogin.c index 69af6fbf095..2173f916c87 100644 --- a/usr.sbin/sliplogin/sliplogin.c +++ b/usr.sbin/sliplogin/sliplogin.c @@ -39,7 +39,7 @@ char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)sliplogin.c 5.6 (Berkeley) 3/2/91";*/ -static char rcsid[] = "$Id: sliplogin.c,v 1.14 2001/07/27 20:34:36 pvalchev Exp $"; +static char rcsid[] = "$Id: sliplogin.c,v 1.15 2001/09/04 23:35:59 millert Exp $"; #endif /* not lint */ /* @@ -217,6 +217,7 @@ main(argc, argv) struct sgttyb tty, otty; #endif char logincmd[2*BUFSIZ+32]; + sigset_t emptyset; extern uid_t getuid(); environ = restricted_environ; /* minimal protection for system() */ @@ -378,8 +379,9 @@ main(argc, argv) /* twiddle thumbs until we get a signal; allow user to kill */ seteuid(uid); + sigemptyset(&emptyset); while (1) - sigpause(0); + sigsuspend(&emptyset); /* NOTREACHED */ } |