diff options
Diffstat (limited to 'mkfifo.c')
-rw-r--r-- | mkfifo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,10 +27,10 @@ | |||
27 | #include <errno.h> | 27 | #include <errno.h> |
28 | 28 | ||
29 | static const char mkfifo_usage[] = "mkfifo [OPTIONS] name\n\n" | 29 | static 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 | ||
35 | extern int mkfifo_main(int argc, char **argv) | 35 | extern int mkfifo_main(int argc, char **argv) |
36 | { | 36 | { |