diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-23 03:58:20 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-23 03:58:20 +0000 |
commit | 303691bd4aa8c95441d01f02bcdb86f75e1bdaf6 (patch) | |
tree | e526bb85aee1ee03ee11ec7f886bb1429e24dbd2 /usr.sbin/lpr/lpd/lpd.c | |
parent | 5bce9eb803ff87338cbef6aa2e55f2ae8d7ddf00 (diff) |
use the same siginterrupt() trick in lpc(1) as in timedc(1). we have to hack
a global into the other programs since they share some source.
Diffstat (limited to 'usr.sbin/lpr/lpd/lpd.c')
-rw-r--r-- | usr.sbin/lpr/lpd/lpd.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.sbin/lpr/lpd/lpd.c b/usr.sbin/lpr/lpd/lpd.c index 37e410e1682..1da204184b5 100644 --- a/usr.sbin/lpr/lpd/lpd.c +++ b/usr.sbin/lpr/lpd/lpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lpd.c,v 1.22 2001/11/19 20:27:13 deraadt Exp $ */ +/* $OpenBSD: lpd.c,v 1.23 2001/11/23 03:58:18 deraadt Exp $ */ /* $NetBSD: lpd.c,v 1.7 1996/04/24 14:54:06 mrg Exp $ */ /* @@ -45,7 +45,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)lpd.c 8.7 (Berkeley) 5/10/95"; #else -static const char rcsid[] = "$OpenBSD: lpd.c,v 1.22 2001/11/19 20:27:13 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: lpd.c,v 1.23 2001/11/23 03:58:18 deraadt Exp $"; #endif #endif /* not lint */ @@ -116,6 +116,9 @@ static void startup __P((void)); static void chkhost __P((struct sockaddr_in *)); static int ckqueue __P((char *)); +/* unused, needed for lpc */ +volatile sig_atomic_t gotintr; + uid_t uid, euid; int |