diff options
author | Jeff Layton <jlayton@redhat.com> | 2006-12-19 11:59:07 -0500 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2006-12-20 06:30:19 +1100 |
commit | 95b414a6038d1d4efb1b1ec90c2da17def7064b2 (patch) | |
tree | 7a276454dd2413ed7cbdc535f8b78f3a0dabd6d2 | |
parent | a68d983fb3b571720eb94f68d56e8849583a2a21 (diff) | |
download | nfs-utils-95b414a6038d1d4efb1b1ec90c2da17def7064b2.tar.gz nfs-utils-95b414a6038d1d4efb1b1ec90c2da17def7064b2.tar.xz nfs-utils-95b414a6038d1d4efb1b1ec90c2da17def7064b2.zip |
add missing long option for -r in mountd
I forgot a bit of code that needs to go into patch 3 that I posted yesterday.
This adds a long option for the -r option. I'll post manpage update patches
once I get them written up.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Neil Brown <neilb@suse.de>
-rw-r--r-- | utils/mountd/mountd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/mountd/mountd.c b/utils/mountd/mountd.c index ee6afe6..08f294d 100644 --- a/utils/mountd/mountd.c +++ b/utils/mountd/mountd.c @@ -67,6 +67,7 @@ static struct option longopts[] = { "ha-callout", 1, 0, 'H' }, { "state-directory-path", 1, 0, 's' }, { "num-threads", 1, 0, 't' }, + { "reverse-lookup", 0, 0, 'r' }, { NULL, 0, 0, 0 } }; |