From: Jim Meyering Date: Wed, 16 Apr 2008 12:21:40 +0000 (+0200) Subject: mknod --help: note that this command may be a shell built-in X-Git-Tag: v6.11~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9bb5e5e9afcdf23f5e9d60a005f9b572f7f953ea;p=thirdparty%2Fcoreutils.git mknod --help: note that this command may be a shell built-in * src/mknod.c (usage): Print USAGE_BUILTIN_WARNING. Suggestion from Eric Blake. --- diff --git a/src/mknod.c b/src/mknod.c index 8a1718d6b6..445117c90c 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);