From: Thomas Egerer Date: Thu, 31 Mar 2011 15:25:31 +0000 (+0200) Subject: udevd: add 'N:' to optstring in getopt_long X-Git-Tag: 174~204 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ee9b2cb8cf023253853f1c80e707598685b11f3;p=systemd udevd: add 'N:' to optstring in getopt_long --- diff --git a/udev/udevd.c b/udev/udevd.c index 1871474f..a8b339fa 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;