aboutsummaryrefslogtreecommitdiff
path: root/coreutils/mkfifo.c
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-15 16:34:54 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-15 16:34:54 +0000
commita6c674b94b4d2c6732a58760d9086657d884671b (patch)
tree140cd30d77342c730afbc1df863bec93c63978a8 /coreutils/mkfifo.c
parentc8ca3c6625e1a3f234c3f0a1ab3142179a3e529f (diff)
downloadbusybox-w32-a6c674b94b4d2c6732a58760d9086657d884671b.tar.gz
busybox-w32-a6c674b94b4d2c6732a58760d9086657d884671b.tar.bz2
busybox-w32-a6c674b94b4d2c6732a58760d9086657d884671b.zip
More documentation updates, and minor fixes to make things sync
up with the docs. -Erik git-svn-id: svn://busybox.net/trunk/busybox@457 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@
27#include <errno.h> 27#include <errno.h>
28 28
29static const char mkfifo_usage[] = "mkfifo [OPTIONS] name\n\n" 29static const char mkfifo_usage[] = "mkfifo [OPTIONS] name\n\n"
30 "Create the named fifo\n\n" 30 "Creates a named pipe (identical to 'mknod name p')\n\n"
31 31
32 "Options:\n" 32 "Options:\n"
33 "\t-m\tcreate the fifo with the specified mode; default = a=rw-umask\n"; 33 "\t-m\tcreate the pipe using the specified mode (default a=rw)\n";
34 34
35extern int mkfifo_main(int argc, char **argv) 35extern int mkfifo_main(int argc, char **argv)
36{ 36{