X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fudev%2Fudevadm-settle.c;h=65508d8c16c12b9173d2acd2e433332f6d6d8032;hp=c4fc4ee4e50fea063dc45fb1ee5aa96bca40d28e;hb=4e93793da8919a10adc9c96eb82f47c6b134abf2;hpb=a1074881b43416018aef2fb8f62ef62f92f0bae7 diff --git a/src/udev/udevadm-settle.c b/src/udev/udevadm-settle.c index c4fc4ee4e..65508d8c1 100644 --- a/src/udev/udevadm-settle.c +++ b/src/udev/udevadm-settle.c @@ -35,6 +35,7 @@ #include #include "udev.h" +#include "util.h" static int adm_settle(struct udev *udev, int argc, char *argv[]) { @@ -59,11 +60,15 @@ static int adm_settle(struct udev *udev, int argc, char *argv[]) for (;;) { int option; - int seconds; option = getopt_long(argc, argv, "s:e:t:E:qh", options, NULL); - if (option == -1) + if (option == -1) { + if (optind < argc) { + fprintf(stderr, "Extraneous argument: '%s'\n", argv[optind]); + exit(EXIT_FAILURE); + } break; + } switch (option) { case 's': @@ -72,12 +77,15 @@ static int adm_settle(struct udev *udev, int argc, char *argv[]) case 'e': end = strtoull(optarg, NULL, 0); break; - case 't': - seconds = atoi(optarg); - if (seconds >= 0) - timeout = seconds; - else - fprintf(stderr, "invalid timeout value\n"); + case 't': { + int r; + + r = safe_atou(optarg, &timeout); + if (r < 0) { + fprintf(stderr, "Invalid timeout value '%s': %s\n", + optarg, strerror(-r)); + exit(EXIT_FAILURE); + }; break; case 'q': quiet = 1;