diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-19 20:27:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-19 20:27:15 +0000 |
commit | d71af8664656628d5d27a8ac59f6a1b1b570387c (patch) | |
tree | 017ead60ffd1778430cf29258f175f37d3f7aa0a /usr.sbin/lpr/lpd/printjob.c | |
parent | 4348c1eeecc4225e4a2b68d5acceba8696f95715 (diff) |
only slight fixes needed in signal handlers
Diffstat (limited to 'usr.sbin/lpr/lpd/printjob.c')
-rw-r--r-- | usr.sbin/lpr/lpd/printjob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/lpr/lpd/printjob.c b/usr.sbin/lpr/lpd/printjob.c index 2fc24865534..f6dfb3dc4be 100644 --- a/usr.sbin/lpr/lpd/printjob.c +++ b/usr.sbin/lpr/lpd/printjob.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printjob.c,v 1.27 2001/10/29 18:13:51 deraadt Exp $ */ +/* $OpenBSD: printjob.c,v 1.28 2001/11/19 20:27:13 deraadt Exp $ */ /* $NetBSD: printjob.c,v 1.9.4.3 1996/07/12 22:31:39 jtc Exp $ */ /* @@ -1174,7 +1174,7 @@ abortpr(signo) kill(ofilter, SIGCONT); while (wait(NULL) > 0) ; - exit(0); + _exit(0); } static void |