aboutsummaryrefslogtreecommitdiff
path: root/coreutils/mkfifo.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-15 16:34:54 +0000
committerErik Andersen <andersen@codepoet.org>2000-04-15 16:34:54 +0000
commit5e1189e187f6a7957dadb8eda2c271c4a0777a23 (patch)
tree140cd30d77342c730afbc1df863bec93c63978a8 /coreutils/mkfifo.c
parent95c1c1e05f290ccbcc2ff863a62bcee5d57bf5c8 (diff)
downloadbusybox-5e1189e187f6a7957dadb8eda2c271c4a0777a23.tar.gz
More documentation updates, and minor fixes to make things sync
up with the docs. -Erik
Diffstat (limited to 'coreutils/mkfifo.c')
-rw-r--r--coreutils/mkfifo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/mkfifo.c b/coreutils/mkfifo.c
index c74402d4c..b273df046 100644
--- a/coreutils/mkfifo.c
+++ b/coreutils/mkfifo.c
@@ -27,10 +27,10 @@
#include <errno.h>
static const char mkfifo_usage[] = "mkfifo [OPTIONS] name\n\n"
- "Create the named fifo\n\n"
+ "Creates a named pipe (identical to 'mknod name p')\n\n"
"Options:\n"
- "\t-m\tcreate the fifo with the specified mode; default = a=rw-umask\n";
+ "\t-m\tcreate the pipe using the specified mode (default a=rw)\n";
extern int mkfifo_main(int argc, char **argv)
{