diff options
| author | Sheldon Hearn <sheldonh@FreeBSD.org> | 1999-07-22 14:47:29 +0000 |
|---|---|---|
| committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 1999-07-22 14:47:29 +0000 |
| commit | dd09a74de7c6320296f74f302934118480400cfd (patch) | |
| tree | 38a0936d069ec650da2fbed23cc299a6a4ced324 | |
| parent | c0039f8e428317547c54055af9cd3ea55f92488f (diff) | |
Notes
| -rw-r--r-- | usr.sbin/inetd/inetd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c index 60303dac1c35..c4fcd85c71ec 100644 --- a/usr.sbin/inetd/inetd.c +++ b/usr.sbin/inetd/inetd.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)from: inetd.c 8.4 (Berkeley) 4/13/94"; #endif static const char rcsid[] = - "$Id: inetd.c,v 1.63 1999/07/21 16:09:45 sheldonh Exp $"; + "$Id: inetd.c,v 1.64 1999/07/22 14:11:26 sheldonh Exp $"; #endif /* not lint */ /* @@ -656,7 +656,7 @@ void flag_signal(c) { if (write(signalpipe[1], &c, 1) != 1) { syslog(LOG_ERR, "write: %m"); - exit(EX_OSERR); + _exit(EX_OSERR); } } |
