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 <[email protected]>
Signed-off-by: NeilBrown <[email protected]>
diff --git a/support/export/client.c b/support/export/client.c
index ba2db8f..adbeed8 100644
--- a/support/export/client.c
+++ b/support/export/client.c
@@ -767,15 +767,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;
}
On 21/10/13 19:17, NeilBrown wrote:
>
>
> 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 <[email protected]>
> Signed-off-by: NeilBrown <[email protected]>
Committed...
steved.
>
> diff --git a/support/export/client.c b/support/export/client.c
> index ba2db8f..adbeed8 100644
> --- a/support/export/client.c
> +++ b/support/export/client.c
> @@ -767,15 +767,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;
> }
>