diff options
author | des <des@FreeBSD.org> | 2002-04-22 13:44:47 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-04-22 13:44:47 +0000 |
commit | 4d6b787d2daa6eb05c0f3526d65b0b92b1afa715 (patch) | |
tree | bf1d5b964f5e7e91c796086166af5a86d7d454a0 /usr.bin/telnet | |
parent | 5cd51ad03ace6eb47f39604929482ae558d66aad (diff) | |
download | FreeBSD-src-4d6b787d2daa6eb05c0f3526d65b0b92b1afa715.zip FreeBSD-src-4d6b787d2daa6eb05c0f3526d65b0b92b1afa715.tar.gz |
Usage style sweep: spell "usage" with a small 'u'.
Also change one case of blatant __progname abuse (several more remain)
This commit does not touch anything in src/{contrib,crypto,gnu}/.
Diffstat (limited to 'usr.bin/telnet')
-rw-r--r-- | usr.bin/telnet/commands.c | 2 | ||||
-rw-r--r-- | usr.bin/telnet/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/telnet/commands.c b/usr.bin/telnet/commands.c index 9ec649e..d5eda31 100644 --- a/usr.bin/telnet/commands.c +++ b/usr.bin/telnet/commands.c @@ -438,7 +438,7 @@ send_tncmd(void (*func)(int, int), const char *cmd, char *name) if (isprefix(name, "help") || isprefix(name, "?")) { int col, len; - printf("Usage: send %s <value|option>\n", cmd); + printf("usage: send %s <value|option>\n", cmd); printf("\"value\" must be from 0 to 255\n"); printf("Valid options are:\n\t"); diff --git a/usr.bin/telnet/main.c b/usr.bin/telnet/main.c index 5c73664..6276fdd 100644 --- a/usr.bin/telnet/main.c +++ b/usr.bin/telnet/main.c @@ -84,7 +84,7 @@ tninit(void) static void usage(void) { - fprintf(stderr, "Usage: %s %s%s%s%s\n", + fprintf(stderr, "usage: %s %s%s%s%s\n", prompt, "[-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d]", "\n\t[-e char] [-l user] [-n tracefile] ", |