]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
ctrlaltdel: improve error messaging
authorSami Kerola <kerolasa@iki.fi>
Mon, 12 Oct 2015 23:35:42 +0000 (00:35 +0100)
committerSami Kerola <kerolasa@iki.fi>
Sun, 18 Oct 2015 17:03:47 +0000 (18:03 +0100)
Tell user what is wrong rather than print usage().

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
sys-utils/ctrlaltdel.c

index 8f646e5ac6df9a6cd6a405d20446dd9f65724d19..64de94f79e0142946a73363143e958c053d8ab81 100644 (file)
@@ -21,7 +21,7 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out)
        fprintf(out, _(" %s hard|soft\n"), program_invocation_short_name);
 
        fprintf(out, USAGE_SEPARATOR);
-       fprintf(out, "Set the function of the Ctrl-Alt-Del combination.\n");
+       fprintf(out, _("Set the function of the Ctrl-Alt-Del combination.\n"));
 
        fprintf(out, USAGE_OPTIONS);
        fprintf(out, USAGE_HELP);
@@ -33,6 +33,7 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out)
 int main(int argc, char **argv)
 {
        int ch;
+       unsigned int cmd;
        static const struct option longopts[] = {
                {"version", no_argument, NULL, 'V'},
                {"help", no_argument, NULL, 'h'},
@@ -59,15 +60,15 @@ int main(int argc, char **argv)
                errx(EXIT_FAILURE,
                     _("You must be root to set the Ctrl-Alt-Del behavior"));
 
-       if (argc == 2 && !strcmp("hard", argv[1])) {
-               if (my_reboot(LINUX_REBOOT_CMD_CAD_ON) < 0)
-                       err(EXIT_FAILURE, "reboot");
-       } else if (argc == 2 && !strcmp("soft", argv[1])) {
-               if (my_reboot(LINUX_REBOOT_CMD_CAD_OFF) < 0)
-                       err(EXIT_FAILURE, "reboot");
-       } else {
-               usage(stderr);
-       }
-
+       if (argc < 2)
+               errx(EXIT_FAILURE, _("not enough arguments"));
+       if (!strcmp("hard", argv[1]))
+               cmd = LINUX_REBOOT_CMD_CAD_ON;
+       else if (!strcmp("soft", argv[1]))
+               cmd = LINUX_REBOOT_CMD_CAD_OFF;
+       else
+               errx(EXIT_FAILURE, _("unknown argument: %s"), argv[1]);
+       if (my_reboot(cmd) < 0)
+               err(EXIT_FAILURE, "reboot");
        return EXIT_SUCCESS;
 }