diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2007-12-30 13:46:14 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2007-12-30 13:46:14 +0000 |
commit | f31bda4260048c08ef9c492bb1d3b19e207eb602 (patch) | |
tree | e4c7120d9be7b14b3e7e4c964692aa120423a7fb /sbin/routed | |
parent | 7181bd2433e1b11b0f5922d6b7bcb0fd8e6101fb (diff) |
usage messages should have the form "usage: command [arguments]"
ok jmc@
Diffstat (limited to 'sbin/routed')
-rw-r--r-- | sbin/routed/rtquery/rtquery.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/routed/rtquery/rtquery.c b/sbin/routed/rtquery/rtquery.c index 8597846a780..c91d05ef426 100644 --- a/sbin/routed/rtquery/rtquery.c +++ b/sbin/routed/rtquery/rtquery.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtquery.c,v 1.17 2005/04/12 15:26:47 cloder Exp $ */ +/* $OpenBSD: rtquery.c,v 1.18 2007/12/30 13:46:13 sobrado Exp $ */ /*- * Copyright (c) 1982, 1986, 1993 @@ -211,9 +211,9 @@ main(int argc, char *argv[]) argv += optind; argc -= optind; if ((not_trace && trace) || argc == 0) { -usage: fprintf(stderr, "%s: [-1np] [-r addr] [-t op] [-w timeout]" - " host ...\n", - pgmname); +usage: fprintf(stderr, + "usage: %s [-1np] [-r addr] [-t op] [-w timeout]" + " host ...\n", pgmname); exit(1); } |