Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / deallocvt.c
index 042de8649f2dff5ae20412417d5f54a1754850f1..4600c0d053bc8f9c4d55ae1df2b892183e9db51a 100644 (file)
@@ -3,7 +3,7 @@
  * disalloc.c - aeb - 940501 - Disallocate virtual terminal(s)
  * Renamed deallocvt.
  */
-#include "internal.h"
+#include "busybox.h"
 #include <stdlib.h>
 #include <stdio.h>
 #include <fcntl.h>
 /* From <linux/vt.h> */
 #define VT_DISALLOCATE  0x5608  /* free memory associated to vt */
 
-const char deallocvt_usage[] =
-       "deallocvt N\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-        "\nDeallocate unused virtual terminal /dev/ttyN\n"
-#endif
-        ;
-
 int deallocvt_main(int argc, char *argv[])
 {
        int fd, num, i;
 
-       if ((argc != 2) || (**(argv + 1) == '-'))
+       //if ((argc > 2) || ((argv == 2) && (**(argv + 1) == '-')))
+       if (argc > 2)
                usage(deallocvt_usage);
 
        fd = get_console_fd("/dev/console");
 
        if (argc == 1) {
+printf("erik: A\n");
                /* deallocate all unused consoles */
                if (ioctl(fd, VT_DISALLOCATE, 0)) {
                        perror("VT_DISALLOCATE");
-                       exit( FALSE);
+                       return EXIT_FAILURE;
                }
        } else
+printf("erik: B\n");
                for (i = 1; i < argc; i++) {
                        num = atoi(argv[i]);
                        if (num == 0)
@@ -44,9 +40,9 @@ int deallocvt_main(int argc, char *argv[])
                                errorMsg("VT 1 cannot be deallocated\n");
                        else if (ioctl(fd, VT_DISALLOCATE, num)) {
                                perror("VT_DISALLOCATE");
-                               errorMsg("could not deallocate console %d\n", num);
-                               exit( FALSE);
+                               fatalError("could not deallocate console %d\n", num);
                        }
                }
-       return( TRUE);
+printf("erik: C\n");
+       return EXIT_SUCCESS;
 }