diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-21 07:30:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-21 07:30:10 +0000 |
commit | 2bdd6f4733341854b33701b17fef4729637f7de4 (patch) | |
tree | 8b4f57f99c0c9b7f2badf97fe238a323eab0e09e /usr.sbin/inetd/inetd.c | |
parent | 782b83d78cd05f5bdc796142954f5859e6c5e55f (diff) |
kill gratuitous hex; millert ok
Diffstat (limited to 'usr.sbin/inetd/inetd.c')
-rw-r--r-- | usr.sbin/inetd/inetd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c index 38f70c38984..a42615c8094 100644 --- a/usr.sbin/inetd/inetd.c +++ b/usr.sbin/inetd/inetd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: inetd.c,v 1.100 2002/06/21 06:20:28 millert Exp $ */ +/* $OpenBSD: inetd.c,v 1.101 2002/06/21 07:30:09 deraadt Exp $ */ /* $NetBSD: inetd.c,v 1.11 1996/02/22 11:14:41 mycroft Exp $ */ /* * Copyright (c) 1983,1991 The Regents of the University of California. @@ -41,7 +41,7 @@ char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)inetd.c 5.30 (Berkeley) 6/3/91";*/ -static char rcsid[] = "$OpenBSD: inetd.c,v 1.100 2002/06/21 06:20:28 millert Exp $"; +static char rcsid[] = "$OpenBSD: inetd.c,v 1.101 2002/06/21 07:30:09 deraadt Exp $"; #endif /* not lint */ /* @@ -645,11 +645,11 @@ doreap(void) if (sep->se_wait == pid) { if (WIFEXITED(status) && WEXITSTATUS(status)) syslog(LOG_WARNING, - "%s: exit status 0x%x", + "%s: exit status %d", sep->se_server, WEXITSTATUS(status)); else if (WIFSIGNALED(status)) syslog(LOG_WARNING, - "%s: exit signal 0x%x", + "%s: exit signal %d", sep->se_server, WTERMSIG(status)); sep->se_wait = 1; fd_grow(&allsockp, &allsockn, sep->se_fd); |