From: Yin Kangkai Date: Tue, 3 Aug 2010 06:11:43 +0000 (+0200) Subject: udevd: fix short options in getopt() X-Git-Tag: 174~396 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ab3c463d418c74275eb8170a87c8cf75e47d973;p=systemd udevd: fix short options in getopt() --- diff --git a/udev/udevd.c b/udev/udevd.c index fbc23714..28081178 100644 --- a/udev/udevd.c +++ b/udev/udevd.c @@ -1062,7 +1062,7 @@ int main(int argc, char *argv[]) for (;;) { int option; - option = getopt_long(argc, argv, "cdeDthV", options, NULL); + option = getopt_long(argc, argv, "c:deDthV", options, NULL); if (option == -1) break;