From: Jeff Layton Date: Mon, 29 Sep 2008 14:20:57 +0000 (-0400) Subject: mountd: change "unknown host" error message to "unmatched host" X-Git-Tag: nfs-utils-1-1-4~8 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=6fdba8870cc40a2f40ed87c4b3563e8b29ad124c;hp=8f1abb8ab1f7afcb9c2c0c094255d7e438b57b09 mountd: change "unknown host" error message to "unmatched host" mount request from unknown host 10.11.14.99 for /export The hosts are listed in DNS with proper reverse records, so the reason why the host is "unknown" isn't clear. This patch just changes the wording of this error to hopefully make it more clear why the mount request was rejected. This also makes this error message use a format more similar to the other error messages in auth_authenticate(). Signed-off-by: Jeff Layton Signed-off-by: Steve Dickson --- diff --git a/utils/mountd/auth.c b/utils/mountd/auth.c index 2bb708f..dfe61ea 100644 --- a/utils/mountd/auth.c +++ b/utils/mountd/auth.c @@ -223,7 +223,7 @@ auth_authenticate(char *what, struct sockaddr_in *caller, char *path) break; case unknown_host: - xlog(L_WARNING, "%s request from unknown host %s for %s (%s)", + xlog(L_WARNING, "refused %s request from %s for %s (%s): unmatched host", what, inet_ntoa(addr), path, epath); break;