summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--term-utils/agetty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/term-utils/agetty.c b/term-utils/agetty.c
index 732a46838..3c3764b8e 100644
--- a/term-utils/agetty.c
+++ b/term-utils/agetty.c
@@ -847,7 +847,7 @@ static void parse_args(int argc, char **argv, struct options *op)
if (argc < optind + 1) {
log_warn(_("not enough arguments"));
- warn(_("not enough arguments"));
+ errx(EXIT_FAILURE, _("not enough arguments"));
}
/* Accept "tty", "baudrate tty", and "tty baudrate". */
@@ -856,7 +856,7 @@ static void parse_args(int argc, char **argv, struct options *op)
parse_speeds(op, argv[optind++]);
if (argc < optind + 1) {
log_warn(_("not enough arguments"));
- warn(_("not enough arguments"));
+ errx(EXIT_FAILURE, _("not enough arguments"));
}
op->tty = argv[optind++];
} else {