diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-09 04:18:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-09 04:18:56 +0000 |
commit | b6af46dd6ae1cf59ece35cc07c88ffa639fe038d (patch) | |
tree | 266ecfe04b3b468233750effa91704592ec3d59a /libexec | |
parent | 44c36db7e3a52250f43957ab6647237285824d99 (diff) |
bit of KNF
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/rpc.rquotad/rquotad.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/rpc.rquotad/rquotad.c b/libexec/rpc.rquotad/rquotad.c index 581d9bc5b9b..006027ecc05 100644 --- a/libexec/rpc.rquotad/rquotad.c +++ b/libexec/rpc.rquotad/rquotad.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rquotad.c,v 1.11 2002/02/16 21:27:31 millert Exp $ */ +/* $OpenBSD: rquotad.c,v 1.12 2002/06/09 04:18:55 deraadt Exp $ */ /* * by Manuel Bouyer (bouyer@ensta.fr) * @@ -94,7 +94,8 @@ main(argc, argv) exit(1); } if (!svc_register(transp, RQUOTAPROG, RQUOTAVERS, rquota_service, proto)) { - syslog(LOG_ERR, "unable to register (RQUOTAPROG, RQUOTAVERS, %s).", proto?"udp":"(inetd)"); + syslog(LOG_ERR, "unable to register (RQUOTAPROG, RQUOTAVERS, %s).", + proto ? "udp" : "(inetd)"); exit(1); } |