]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
mountd: change "unknown host" error message to "unmatched host"
authorJeff Layton <jlayton@redhat.com>
Mon, 29 Sep 2008 14:20:57 +0000 (10:20 -0400)
committerSteve Dickson <steved@redhat.com>
Mon, 29 Sep 2008 14:20:57 +0000 (10:20 -0400)
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 <jlayton@redhat.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
utils/mountd/auth.c

index 2bb708ff138dfe23897156cc19597350d0c607af..dfe61ea7fcc7c8d49faa697541f31ebf0e8d9eee 100644 (file)
@@ -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;