summaryrefslogtreecommitdiff
path: root/usr.sbin/inetd
diff options
context:
space:
mode:
authorJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2003-04-28 02:58:46 +0000
committerJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2003-04-28 02:58:46 +0000
commit2c7efb3dad677b8a5b4960c5b54512d6ccf11f36 (patch)
tree2637f1472e28df29064f4d1e123152c9eb0ef610 /usr.sbin/inetd
parentbabebccc004ac25fdc393da4dd577dac633edb45 (diff)
advocate posix ":" for user:group. deraadt ok
Diffstat (limited to 'usr.sbin/inetd')
-rw-r--r--usr.sbin/inetd/inetd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c
index cbbfc53bb51..28d586de496 100644
--- a/usr.sbin/inetd/inetd.c
+++ b/usr.sbin/inetd/inetd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: inetd.c,v 1.108 2002/11/11 23:46:29 millert Exp $ */
+/* $OpenBSD: inetd.c,v 1.109 2003/04/28 02:58:45 itojun 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.108 2002/11/11 23:46:29 millert Exp $";
+static char rcsid[] = "$OpenBSD: inetd.c,v 1.109 2003/04/28 02:58:45 itojun Exp $";
#endif /* not lint */
/*
@@ -1886,7 +1886,7 @@ print_service(char *action, struct servtab *sep)
fprintf(stderr, "proto=%s,", sep->se_proto);
fprintf(stderr,
- " wait.max=%hd.%d user:group=%s.%s builtin=%lx server=%s\n",
+ " wait.max=%hd.%d user:group=%s:%s builtin=%lx server=%s\n",
sep->se_wait, sep->se_max, sep->se_user,
sep->se_group ? sep->se_group : "wheel",
(long)sep->se_bi, sep->se_server);