diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-22 23:53:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-22 23:53:54 +0000 |
commit | 21e0c0f8e08905682f454d81114b3974e4f78b1d (patch) | |
tree | 3fc8adc28ac24518b66a59ed8111c56f07aa7507 | |
parent | 8baaab2c26a195784fa8b47805ab634a25adb158 (diff) |
exit() from a signal handler is a sin
-rw-r--r-- | bin/ed/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/ed/main.c b/bin/ed/main.c index b524502f3c0..dd6b29ceaea 100644 --- a/bin/ed/main.c +++ b/bin/ed/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.21 2001/01/17 19:19:31 deraadt Exp $ */ +/* $OpenBSD: main.c,v 1.22 2001/06/22 23:53:53 deraadt Exp $ */ /* $NetBSD: main.c,v 1.3 1995/03/21 09:04:44 cgd Exp $ */ /* main.c: This file contains the main control and user-interface routines @@ -39,7 +39,7 @@ char *copyright = #if 0 static char *rcsid = "@(#)main.c,v 1.1 1994/02/01 00:34:42 alm Exp"; #else -static char rcsid[] = "$OpenBSD: main.c,v 1.21 2001/01/17 19:19:31 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.22 2001/06/22 23:53:53 deraadt Exp $"; #endif #endif /* not lint */ @@ -1454,7 +1454,7 @@ handle_hup(signo) strlcat(path, "/ed.hup", sizeof(path)); write_file(hup, "w", 1, addr_last); } - quit(2); + _exit(2); } @@ -1463,7 +1463,7 @@ handle_int(signo) int signo; { if (!sigactive) - quit(1); + _exit(1); sigflags &= ~(1 << (signo - 1)); #ifdef _POSIX_SOURCE siglongjmp(env, -1); |