From 6fdba8870cc40a2f40ed87c4b3563e8b29ad124c Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Mon, 29 Sep 2008 10:20:57 -0400 Subject: [PATCH] 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 --- utils/mountd/auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2