Update web page...
[oweals/busybox.git] / rmdir.c
diff --git a/rmdir.c b/rmdir.c
index 3c3533fae6cde96fd98030d67b3142556d30a39b..2c280376f84cdd02e70b28f898b3158856c70f38 100644 (file)
--- a/rmdir.c
+++ b/rmdir.c
@@ -3,7 +3,7 @@
  * Mini rmdir implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 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 <stdio.h>
 #include <errno.h>
-
-const char rmdir_usage[] =
-       "rmdir [OPTION]... DIRECTORY...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nRemove the DIRECTORY(ies), if they are empty.\n"
-#endif
-       ;
+#include <unistd.h>
+#include <stdlib.h>
+#include "busybox.h"
 
 extern int rmdir_main(int argc, char **argv)
 {
+       int status = EXIT_SUCCESS;
+
        if (argc == 1 || **(argv + 1) == '-')
-               usage(rmdir_usage);
+               show_usage();
 
        while (--argc > 0) {
                if (rmdir(*(++argv)) == -1) {
-                       errorMsg("%s\n", strerror(errno));
-                       exit(FALSE);
+                       perror_msg("%s", *argv);
+                       status = EXIT_FAILURE;
                }
        }
-       return(TRUE);
+       return status;
 }