Support for tar -z option for uncompressing only
[oweals/busybox.git] / mkfifo.c
index b273df04633abc38665bffb0412d4999b8546bcd..ef4a5256f4ec0327469160ea58eb128c732d7771 100644 (file)
--- a/mkfifo.c
+++ b/mkfifo.c
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 #include <sys/types.h>
-#include <sys/stat.h>
 #include <errno.h>
 
-static const char mkfifo_usage[] = "mkfifo [OPTIONS] name\n\n"
-       "Creates a named pipe (identical to 'mknod name p')\n\n"
-
-       "Options:\n"
-       "\t-m\tcreate the pipe using the specified mode (default a=rw)\n";
-
 extern int mkfifo_main(int argc, char **argv)
 {
        char *thisarg;
@@ -58,12 +51,11 @@ extern int mkfifo_main(int argc, char **argv)
                argc--;
                argv++;
        }
-       if (argc < 1)
+       if (argc < 1 || *argv[0] == '-')
                usage(mkfifo_usage);
        if (mkfifo(*argv, mode) < 0) {
                perror("mkfifo");
-               exit(255);
-       } else {
-               exit(TRUE);
+               return EXIT_FAILURE;
        }
+       return EXIT_SUCCESS;
 }