diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-03 01:15:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-03 01:15:14 +0000 |
commit | 704ff3e0057b8fab16eafa16f26ca49f9df0505c (patch) | |
tree | 60fd3a63ca5df554acc14a0ca7fbc5ec4ef7e7a2 /sbin/init | |
parent | 84db52f9267e025f0cc916d0bcea1bb1aa6c0905 (diff) |
sigset_t; jraynard
Diffstat (limited to 'sbin/init')
-rw-r--r-- | sbin/init/init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/init/init.c b/sbin/init/init.c index fb599f083b8..2715b80b338 100644 --- a/sbin/init/init.c +++ b/sbin/init/init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init.c,v 1.11 1997/09/14 10:37:45 deraadt Exp $ */ +/* $OpenBSD: init.c,v 1.12 1998/03/03 01:15:13 deraadt Exp $ */ /* $NetBSD: init.c,v 1.22 1996/05/15 23:29:33 jtc Exp $ */ /*- @@ -47,7 +47,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)init.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: init.c,v 1.11 1997/09/14 10:37:45 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: init.c,v 1.12 1998/03/03 01:15:13 deraadt Exp $"; #endif #endif /* not lint */ @@ -284,7 +284,7 @@ handle(va_alist) { int sig; struct sigaction sa; - int mask_everything; + sigset_t mask_everything; va_list ap; #ifndef __STDC__ sig_t handler; |