Support for tar -z option for uncompressing only
[oweals/busybox.git] / console-tools / deallocvt.c
index 65af79b7791dfc8ed7b06009bcd5bec499452d1a..ebdce7b24925bb7c5276ffa8ec23e8fff2973afd 100644 (file)
@@ -28,21 +28,21 @@ 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)
-                               errorMsg("0: illegal VT number\n");
+                               error_msg("0: illegal VT number\n");
                        else if (num == 1)
-                               errorMsg("VT 1 cannot be deallocated\n");
+                               error_msg("VT 1 cannot be deallocated\n");
                        else if (ioctl(fd, VT_DISALLOCATE, num)) {
                                perror("VT_DISALLOCATE");
-                               fatalError("could not deallocate console %d\n", num);
+                               error_msg_and_die("could not deallocate console %d\n", num);
                        }
                }
 printf("erik: C\n");
-       return( TRUE);
+       return EXIT_SUCCESS;
 }