Add errno.h
[oweals/busybox.git] / rmmod.c
diff --git a/rmmod.c b/rmmod.c
index 67b1084fbf1293b7adff3dc45769dd071acb5818..52adc7bcd85edc65d33b56e557c5aef7a013fc5b 100644 (file)
--- a/rmmod.c
+++ b/rmmod.c
@@ -21,7 +21,7 @@
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 #include <errno.h>
 #include <unistd.h>
@@ -34,7 +34,7 @@ _syscall1(int, delete_module, const char *, name)
 
 extern int rmmod_main(int argc, char **argv)
 {
-       int ret = TRUE;
+       int ret = EXIT_SUCCESS;
        if (argc <= 1) {
                usage(rmmod_usage);
        }
@@ -45,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);
                        }
@@ -58,8 +56,8 @@ extern int rmmod_main(int argc, char **argv)
 
        while (argc-- > 0) {
                if (delete_module(*argv) < 0) {
-                       perror(*argv);
-                       ret=FALSE;
+                       perror_msg("%s", *argv);
+                       ret = EXIT_FAILURE;
                }
                argv++;
        }