Fix for dpkg-deb, courtesy of Larry Doolittle.
[oweals/busybox.git] / rmmod.c
diff --git a/rmmod.c b/rmmod.c
index d01725329e923fb7ca7cfcaad523732731232f7d..52adc7bcd85edc65d33b56e557c5aef7a013fc5b 100644 (file)
--- a/rmmod.c
+++ b/rmmod.c
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 #include <errno.h>
 #include <unistd.h>
-#include <sys/syscall.h>
+#define __LIBRARY__
 
 
 
 /* And the system call of the day is...  */
 _syscall1(int, delete_module, const char *, name)
 
-
-static const char rmmod_usage[] =
-       "rmmod [OPTION]... [MODULE]...\n\n"
-       "Unloads the specified kernel modules from the kernel.\n\n"
-
-       "Options:\n" "\t-a\tTry to remove all unused kernel modules.\n";
-
-
-
 extern int rmmod_main(int argc, char **argv)
 {
+       int ret = EXIT_SUCCESS;
        if (argc <= 1) {
                usage(rmmod_usage);
        }
@@ -53,11 +45,9 @@ extern int rmmod_main(int argc, char **argv)
                        switch (**argv) {
                        case 'a':
                                /* Unload _all_ unused modules via NULL delete_module() call */
-                               if (delete_module(NULL)) {
-                                       perror("rmmod");
-                                       exit(FALSE);
-                               }
-                               exit(TRUE);
+                               if (delete_module(NULL))
+                                       perror_msg_and_die("rmmod");
+                               return EXIT_SUCCESS;
                        default:
                                usage(rmmod_usage);
                        }
@@ -66,9 +56,10 @@ extern int rmmod_main(int argc, char **argv)
 
        while (argc-- > 0) {
                if (delete_module(*argv) < 0) {
-                       perror(*argv);
+                       perror_msg("%s", *argv);
+                       ret = EXIT_FAILURE;
                }
                argv++;
        }
-       exit(TRUE);
+       return(ret);
 }