Fix the pwd and group functions. The bb_ stuff was a leftover from
[oweals/busybox.git] / chvt.c
diff --git a/chvt.c b/chvt.c
index 7909645868c05a867ca8a7055c6f48e9dc2f198d..c715e67ded859d60783983cc2ce96c85ab6ab687 100644 (file)
--- a/chvt.c
+++ b/chvt.c
@@ -12,8 +12,8 @@
 #include <sys/ioctl.h>
 
 /* From <linux/vt.h> */
-#define VT_ACTIVATE     0x5606  /* make vt active */
-#define VT_WAITACTIVE   0x5607  /* wait for vt active */
+static const int VT_ACTIVATE = 0x5606;  /* make vt active */
+static const int VT_WAITACTIVE = 0x5607;  /* wait for vt active */
 
 int chvt_main(int argc, char **argv)
 {
@@ -23,14 +23,10 @@ int chvt_main(int argc, char **argv)
                usage (chvt_usage);
        fd = get_console_fd("/dev/console");
        num = atoi(argv[1]);
-       if (ioctl(fd, VT_ACTIVATE, num)) {
-               perror("VT_ACTIVATE");
-               return EXIT_FAILURE;
-       }
-       if (ioctl(fd, VT_WAITACTIVE, num)) {
-               perror("VT_WAITACTIVE");
-               return EXIT_FAILURE;
-       }
+       if (ioctl(fd, VT_ACTIVATE, num))
+               perror_msg_and_die("VT_ACTIVATE");
+       if (ioctl(fd, VT_WAITACTIVE, num))
+               perror_msg_and_die("VT_WAITACTIVE");
        return EXIT_SUCCESS;
 }