summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2013-10-24 15:58:45 -0400
committerSteve Dickson <steved@redhat.com>2013-10-24 16:06:10 -0400
commit8a5da2b392bc25feb58a9de11cac411f5f8473bb (patch)
tree3fc483d956faf66c5e259880816abd8e9eebbfd9
parenta90df3f9270464c4a234e63626c5870c76997a90 (diff)
downloadnfs-utils-8a5da2b392bc25feb58a9de11cac411f5f8473bb.tar.gz
nfs-utils-8a5da2b392bc25feb58a9de11cac411f5f8473bb.tar.xz
nfs-utils-8a5da2b392bc25feb58a9de11cac411f5f8473bb.zip
Stop Treat IP addresses a FQDN rather than SUBNETs.
I think there was a reason for this many years ago, but I can not find any evidence that it ever really did anything useful and it certainly doesn't seem to now. And the documentation suggests that IP address take precedence over SUBNETs, and that can only happen if they are treated as MCL_FQDN. So remove this apparently pointless code. Reported-and-tested-by: Wangminlan <wangminlan@huawei.com> Signed-off-by: NeilBrown <neilb@suse.de> Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--support/export/client.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/support/export/client.c b/support/export/client.c
index ba2db8f..dbf47b9 100644
--- a/support/export/client.c
+++ b/support/export/client.c
@@ -745,7 +745,6 @@ client_check(const nfs_client *clp, const struct addrinfo *ai)
int
client_gettype(char *ident)
{
- struct addrinfo *ai;
char *sp;
if (ident[0] == '\0' || strcmp(ident, "*")==0)
@@ -767,15 +766,5 @@ client_gettype(char *ident)
sp++;
}
- /*
- * Treat unadorned IP addresses as MCL_SUBNETWORK.
- * Everything else is MCL_FQDN.
- */
- ai = host_pton(ident);
- if (ai != NULL) {
- freeaddrinfo(ai);
- return MCL_SUBNETWORK;
- }
-
return MCL_FQDN;
}