diff options
author | Yin Kangkai <kangkai.yin@linux.intel.com> | 2010-08-03 08:11:43 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2010-08-03 08:11:43 +0200 |
commit | 4ab3c463d418c74275eb8170a87c8cf75e47d973 (patch) | |
tree | 2062f69a1f024ab90db86e8a617b2dbd51c95795 /udev/udevd.c | |
parent | 27f4528b9a6587cab2d916fad735dd93eb7563b0 (diff) |
udevd: fix short options in getopt()
Diffstat (limited to 'udev/udevd.c')
-rw-r--r-- | udev/udevd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/udevd.c b/udev/udevd.c index fbc237143c..2808117824 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; |