Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / console-tools / deallocvt.c
index 9c477d23802b09916b0af96ca49e0ba92e4f67b2..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>
@@ -17,18 +17,21 @@ 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)
@@ -37,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;
 }