diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2008-03-16 00:14:48 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2008-03-16 00:14:48 +0000 |
commit | 431d092dce06e5912c65092ef9ce8ef2b5df75fa (patch) | |
tree | 8926be5037819a1b008661e96ead260f4674d2e1 /usr.sbin/snmpd/snmpd.c | |
parent | ebdf6e5dc2d02df80812fbbf9231f261f4a5ac8b (diff) |
usage statements are preceeded with usage:
ok reyk@
Diffstat (limited to 'usr.sbin/snmpd/snmpd.c')
-rw-r--r-- | usr.sbin/snmpd/snmpd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/snmpd/snmpd.c b/usr.sbin/snmpd/snmpd.c index 6ede71ca0af..909b327a3fb 100644 --- a/usr.sbin/snmpd/snmpd.c +++ b/usr.sbin/snmpd/snmpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: snmpd.c,v 1.5 2008/02/16 22:06:10 sobrado Exp $ */ +/* $OpenBSD: snmpd.c,v 1.6 2008/03/16 00:14:47 dlg Exp $ */ /* * Copyright (c) 2007, 2008 Reyk Floeter <reyk@vantronix.net> @@ -84,7 +84,8 @@ usage(void) { extern char *__progname; - fprintf(stderr, "%s [-dNnv] [-D macro=value] [-f file]\n", __progname); + fprintf(stderr, "usage: %s [-dNnv] [-D macro=value] [-f file]\n", + __progname); exit(1); } |