diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | utils/mountd/mountd.c | 2 |
2 files changed, 11 insertions, 1 deletions
@@ -1,4 +1,14 @@ 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 Document sensitive gids diff --git a/utils/mountd/mountd.c b/utils/mountd/mountd.c index c1d18d4..f40d367 100644 --- a/utils/mountd/mountd.c +++ b/utils/mountd/mountd.c @@ -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); |