Signed-off-by: Karel Zak <kzak@redhat.com>
int print_banner = TRUE;
char *mbuf;
size_t mbufsize;
- long timeout = WRITE_TIME_OUT;
+ unsigned timeout = WRITE_TIME_OUT;
setlocale(LC_ALL, "");
bindtextdomain(PACKAGE, LOCALEDIR);
warnx(_("--nobanner is available only for root"));
break;
case 't':
- timeout = strtoll_or_err(optarg, _("invalid timeout argument"));
+ timeout = strtou32_or_err(optarg, _("invalid timeout argument"));
if (timeout < 1)
errx(EXIT_FAILURE, _("invalid timeout argument: %s"), optarg);
break;