diff options
author | Gleydson Soares <gsoares@cvs.openbsd.org> | 2012-04-19 14:33:25 +0000 |
---|---|---|
committer | Gleydson Soares <gsoares@cvs.openbsd.org> | 2012-04-19 14:33:25 +0000 |
commit | 45c1fc3b6ccd6fbd8f60293fc1e9609f18e7fe05 (patch) | |
tree | ea7573bb79407e9acd020638f77871f17fb738cd /usr.sbin/inetd/inetd.c | |
parent | 27956573fb04f036a8fda103d7bb6255f004761e (diff) |
small cleanup(%hd -> %d)
yes deraadt@
Diffstat (limited to 'usr.sbin/inetd/inetd.c')
-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 a6c5a5f3ab8..765709616b6 100644 --- a/usr.sbin/inetd/inetd.c +++ b/usr.sbin/inetd/inetd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: inetd.c,v 1.132 2009/11/02 20:03:01 otto Exp $ */ +/* $OpenBSD: inetd.c,v 1.133 2012/04/19 14:33:24 gsoares Exp $ */ /* * Copyright (c) 1983,1991 The Regents of the University of California. @@ -1841,7 +1841,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=%d.%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); |