]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
Fix -n option to mountd
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 24 Oct 2006 06:10:44 +0000 (16:10 +1000)
committerNeil Brown <neilb@suse.de>
Tue, 24 Oct 2006 06:10:44 +0000 (16:10 +1000)
The getopt_long() option string in mountd was having a spurious
colon after the 'n', leading to the short form of --no-tcp not
being usable (expecting a parameter, contrary to the long form
and the documentation). Fix.

ChangeLog
utils/mountd/mountd.c

index 233108631cb2a41ed13f909ba6694591dfb5c564..1a9e642d33c7df87608b4a589f52eab82199b746 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Author: Steinar H. Gunderson <sgunderson@bigfoot.com>
+Date:  Wed Sep 13 22:23:23 CEST 2006
+
+    Fix -n option to mountd
+
+    The getopt_long() option string in mountd was having a spurious
+    colon after the 'n', leading to the short form of --no-tcp not
+    being usable (expecting a parameter, contrary to the long form
+    and the documentation). Fix.
+    
 Author: Steinar H. Gunderson <sgunderson@bigfoot.com>
 Date:  Wed Sep 13 22:19:39 CEST 2006
 
index c1d18d4cebc9b37b1f227d7de33fe1aaf4ccfaaf..f40d3673792e39551d331c32ece94873118a531a 100644 (file)
@@ -558,7 +558,7 @@ main(int argc, char **argv)
 
        /* Parse the command line options and arguments. */
        opterr = 0;
-       while ((c = getopt_long(argc, argv, "o:n:Fd:f:p:P:hH:N:V:vs:t:", longopts, NULL)) != EOF)
+       while ((c = getopt_long(argc, argv, "o:nFd:f:p:P:hH:N:V:vs:t:", longopts, NULL)) != EOF)
                switch (c) {
                case 'o':
                        descriptors = atoi(optarg);