summaryrefslogtreecommitdiff
path: root/udev
diff options
context:
space:
mode:
authorThomas Egerer <thomas.egerer@secunet.com>2011-03-31 17:25:31 +0200
committerKay Sievers <kay.sievers@vrfy.org>2011-03-31 17:26:37 +0200
commit6ee9b2cb8cf023253853f1c80e707598685b11f3 (patch)
tree7f6125d1bf5710926867284e9825b946427bfefc /udev
parentff4a035a8aaba6a7b5b85c4b348886d72c42e84c (diff)
udevd: add 'N:' to optstring in getopt_long
Diffstat (limited to 'udev')
-rw-r--r--udev/udevd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/udevd.c b/udev/udevd.c
index 1871474ff9..a8b339fa1f 100644
--- a/udev/udevd.c
+++ b/udev/udevd.c
@@ -1118,7 +1118,7 @@ int main(int argc, char *argv[])
for (;;) {
int option;
- option = getopt_long(argc, argv, "c:deDthV", options, NULL);
+ option = getopt_long(argc, argv, "c:deDtN:hV", options, NULL);
if (option == -1)
break;