diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-02 16:20:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-02 16:20:14 +0000 |
commit | 4b04812d48ab55704a52929c162801889cfb7315 (patch) | |
tree | da299d4d2501f36217abe677759f4fc66bf23670 /libexec | |
parent | 9a220fbad5dd513de55c52e6eb1152e0f0783100 (diff) |
_exit() in signal handler
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/telnetd/sys_term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/telnetd/sys_term.c b/libexec/telnetd/sys_term.c index e0bf301bd93..d4675c67349 100644 --- a/libexec/telnetd/sys_term.c +++ b/libexec/telnetd/sys_term.c @@ -1653,7 +1653,7 @@ cleanup(int sig) chown(line, 0, 0); #endif shutdown(net, 2); - exit(1); + _exit(1); } #endif /* PARENT_DOES_UTMP */ |