From 4ab3c463d418c74275eb8170a87c8cf75e47d973 Mon Sep 17 00:00:00 2001 From: Yin Kangkai Date: Tue, 3 Aug 2010 08:11:43 +0200 Subject: [PATCH] udevd: fix short options in getopt() --- udev/udevd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2