diff options
author | Jim Meyering <meyering@redhat.com> | 2008-04-16 14:21:40 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-04-16 14:21:40 +0200 |
commit | 9bb5e5e9afcdf23f5e9d60a005f9b572f7f953ea (patch) | |
tree | fd7b918f753be8b3c71a3a550712e3fac3f03487 /src | |
parent | d9cdf8ce28e97c94a66df2e3c0d21b0cf33f2267 (diff) | |
download | coreutils-9bb5e5e9afcdf23f5e9d60a005f9b572f7f953ea.tar.xz |
mknod --help: note that this command may be a shell built-in
* src/mknod.c (usage): Print USAGE_BUILTIN_WARNING.
Suggestion from Eric Blake.
Diffstat (limited to 'src')
-rw-r--r-- | src/mknod.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mknod.c b/src/mknod.c index 8a1718d6b..445117c90 100644 --- a/src/mknod.c +++ b/src/mknod.c @@ -83,6 +83,7 @@ otherwise, as decimal. TYPE may be:\n\ c, u create a character (unbuffered) special file\n\ p create a FIFO\n\ "), stdout); + printf (USAGE_BUILTIN_WARNING, PROGRAM_NAME); emit_bug_reporting_address (); } exit (status); |