From 076dd803330d93819c6e7862f515a8fa3997a83b Mon Sep 17 00:00:00 2001 From: Henrique Martins Date: Tue, 4 Nov 2014 15:12:16 -0500 Subject: exportfs: changes handling of unresolvable entries The patch to nfs/exportfs to allow nfsd to start when there are some, but not all, unresolvable entries in /etc/exports. Signed-off-by: Henrique Martins Signed-off-by: Steve Dickson --- support/export/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support/export/client.c') diff --git a/support/export/client.c b/support/export/client.c index f85e11c..95156f0 100644 --- a/support/export/client.c +++ b/support/export/client.c @@ -277,7 +277,7 @@ client_lookup(char *hname, int canonical) if (htype == MCL_FQDN && !canonical) { ai = host_addrinfo(hname); if (!ai) { - xlog(L_ERROR, "Failed to resolve %s", hname); + xlog(L_WARNING, "Failed to resolve %s", hname); goto out; } hname = ai->ai_canonname; -- cgit