From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Egerer Date: Thu, 31 Mar 2011 13:06:23 +0000 Subject: [PATCH] udevd.c: Add 'N:' to optstring in getopt_long Message-Id: <4D947C4F.6060301@secunet.com> MIME-Version: 1 Content-Type: multipart/mixed; boundary="------------070500080107090302070205" List-Id: To: linux-hotplug@vger.kernel.org This is a multi-part message in MIME format. --------------070500080107090302070205 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Signed-off-by: Thomas Egerer --- udev/udevd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --------------070500080107090302070205 Content-Type: text/x-patch; name="0001-udevd.c-Add-N-to-optstring-in-getopt_long.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-udevd.c-Add-N-to-optstring-in-getopt_long.patch" diff --git a/udev/udevd.c b/udev/udevd.c index 1871474..53db44a 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:deDthN:V", options, NULL); if (option == -1) break; --------------070500080107090302070205--