Tar, by itself, could fail.
[oweals/busybox.git] / rmdir.c
diff --git a/rmdir.c b/rmdir.c
index f49569749632476d6a5d648fe67e23c8cf8f55a6..f9f82bba4e3f30e2b5e4c8f8a6ee99faa916c4c9 100644 (file)
--- a/rmdir.c
+++ b/rmdir.c
@@ -3,7 +3,7 @@
  * Mini rmdir implementation for busybox
  *
  *
- * Copyright (C) 1999 by Lineo, inc.
+ * Copyright (C) 1999,2000 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 #include <errno.h>
 
-
 extern int rmdir_main(int argc, char **argv)
 {
-       if (argc == 1 || **(argv + 1) == '-') {
-               usage
-                       ("rmdir [OPTION]... DIRECTORY...\n\nRemove the DIRECTORY(ies), if they are empty.\n");
-       }
+       int status = EXIT_SUCCESS;
+
+       if (argc == 1 || **(argv + 1) == '-')
+               usage(rmdir_usage);
 
        while (--argc > 0) {
                if (rmdir(*(++argv)) == -1) {
-                       fprintf(stderr, "%s: %s\n", *argv, strerror(errno));
-                       exit(FALSE);
+                       perror_msg("%s", *argv);
+                       status = EXIT_FAILURE;
                }
        }
-       exit(TRUE);
+       return status;
 }