chiark / gitweb /
udevd: fix short options in getopt()
authorYin Kangkai <kangkai.yin@linux.intel.com>
Tue, 3 Aug 2010 06:11:43 +0000 (08:11 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Tue, 3 Aug 2010 06:11:43 +0000 (08:11 +0200)
udev/udevd.c

index fbc237143cfa26216963d46c2b12383caaf23f26..2808117824905c71458466fae10648e600d374d9 100644 (file)
@@ -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;