From: Anthony Foiani Date: Fri, 23 Aug 2013 04:06:41 +0000 (-0600) Subject: staging: usbip: properly handle "-l" / "--log" option X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=5894af89f22a94f2356474a2e1e14ca6267019d4;p=deliverable%2Flinux.git staging: usbip: properly handle "-l" / "--log" option This option is in the long options list, and it's handled in the option processing loop, but the optstring didn't include it. Signed-off-by: Anthony Foiani Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/usbip/userspace/src/usbip.c b/drivers/staging/usbip/userspace/src/usbip.c index 69ac4b569c36..b4f299ee5dd4 100644 --- a/drivers/staging/usbip/userspace/src/usbip.c +++ b/drivers/staging/usbip/userspace/src/usbip.c @@ -152,7 +152,7 @@ int main(int argc, char *argv[]) usbip_use_stderr = 1; opterr = 0; for (;;) { - opt = getopt_long(argc, argv, "+dt:", opts, NULL); + opt = getopt_long(argc, argv, "+dlt:", opts, NULL); if (opt == -1) break;