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 /bin/sh/options.c | |
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 'bin/sh/options.c')
-rw-r--r-- | bin/sh/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sh/options.c b/bin/sh/options.c index 5a3ba34..dbcb67e 100644 --- a/bin/sh/options.c +++ b/bin/sh/options.c @@ -373,7 +373,7 @@ getoptscmd(int argc, char **argv) char **optbase = NULL; if (argc < 3) - error("Usage: getopts optstring var [arg]"); + error("usage: getopts optstring var [arg]"); else if (argc == 3) optbase = shellparam.p; else |