Module Name: src
Committed By: khorben
Date: Sat Apr 5 23:36:10 UTC 2014
Modified Files:
src/usr.sbin/inetd: inetd.c
Log Message:
Use base 10 when logging the exit status or exit signal for sub-processes,
instead of hexadecimal.
To generate a diff of this commit:
cvs rdiff -u -r1.121 -r1.122 src/usr.sbin/inetd/inetd.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/inetd/inetd.c
diff -u src/usr.sbin/inetd/inetd.c:1.121 src/usr.sbin/inetd/inetd.c:1.122
--- src/usr.sbin/inetd/inetd.c:1.121 Thu Dec 13 19:38:40 2012
+++ src/usr.sbin/inetd/inetd.c Sat Apr 5 23:36:10 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: inetd.c,v 1.121 2012/12/13 19:38:40 christos Exp $ */
+/* $NetBSD: inetd.c,v 1.122 2014/04/05 23:36:10 khorben Exp $ */
/*-
* Copyright (c) 1998, 2003 The NetBSD Foundation, Inc.
@@ -66,7 +66,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 19
#if 0
static char sccsid[] = "@(#)inetd.c 8.4 (Berkeley) 4/13/94";
#else
-__RCSID("$NetBSD: inetd.c,v 1.121 2012/12/13 19:38:40 christos Exp $");
+__RCSID("$NetBSD: inetd.c,v 1.122 2014/04/05 23:36:10 khorben Exp $");
#endif
#endif /* not lint */
@@ -762,11 +762,11 @@ reapchild(void)
if (WIFEXITED(status) && WEXITSTATUS(status))
syslog(LOG_WARNING,
- "%s: exit status 0x%x",
+ "%s: exit status %u",
sep->se_server, WEXITSTATUS(status));
else if (WIFSIGNALED(status))
syslog(LOG_WARNING,
- "%s: exit signal 0x%x",
+ "%s: exit signal %u",
sep->se_server, WTERMSIG(status));
sep->se_wait = 1;
ev = allocchange();