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: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=4ab3c463d418c74275eb8170a87c8cf75e47d973;hp=27f4528b9a6587cab2d916fad735dd93eb7563b0 udevd: fix short options in getopt() --- diff --git a/udev/udevd.c b/udev/udevd.c index fbc237143..280811782 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;