diff options
author | Jim Meyering <jim@meyering.net> | 1999-08-30 14:35:45 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-08-30 14:35:45 +0000 |
commit | 57e5f5a5b5c35ab19305a00bbb4297ec43dd3e41 (patch) | |
tree | 77e5f5863599194b43cf7cfbcd68c95c08228f38 /src | |
parent | 2a0b67dc3b082130381dfcd8715bab44e4fece75 (diff) | |
download | coreutils-57e5f5a5b5c35ab19305a00bbb4297ec43dd3e41.tar.xz |
(usage): Correct --help message.
Diffstat (limited to 'src')
-rw-r--r-- | src/hostid.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/hostid.c b/src/hostid.c index eec81fef0..607ccaa38 100644 --- a/src/hostid.c +++ b/src/hostid.c @@ -45,14 +45,16 @@ usage (int status) program_name); else { - printf (_("Usage: %s\n"), program_name); printf (_("\ +Usage: %s\n\ + or: %s OPTION\n\ Print the numeric identifier (in hexadecimal) for the current host.\n\ \n\ --help display this help and exit\n\ --version output version information and exit\n\ \n\ -")); +"), + program_name, program_name); puts (_("\nReport bugs to <bug-sh-utils@gnu.org>.")); } exit (status); |