From 9edb4aeb4f7acadd82a52268c66c0d35d0b64f8a Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 25 Jun 2013 01:06:19 +0200 Subject: [PATCH] Use default libunbound paths instead of /etc/resolv.conf and /etc/hosts. --- itkacl-2.1/itkacl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/itkacl-2.1/itkacl.c b/itkacl-2.1/itkacl.c index 2795cf4..eda3ebb 100644 --- a/itkacl-2.1/itkacl.c +++ b/itkacl-2.1/itkacl.c @@ -195,22 +195,22 @@ int itkacl_check(const char * const realm, const char * const user, return -1; } - ret = ub_ctx_resolvconf(ctx, "/etc/resolv.conf"); + ret = ub_ctx_resolvconf(ctx, NULL); if (ret != 0) { if (errmsg) snprintf(errmsg, errmsg_size, - "Host name lookup failure: Could not read /etc/resolv.conf " + "Host name lookup failure: Could not read resolv.conf " "(resolver error: %s) (system error: %s)", ub_strerror(ret), strerror(errno)); ub_ctx_delete(ctx); return -1; } - ret = ub_ctx_hosts(ctx, "/etc/hosts"); + ret = ub_ctx_hosts(ctx, NULL); if (ret != 0) { if (errmsg) snprintf(errmsg, errmsg_size, - "Host name lookup failure: Could not read /etc/hosts " + "Host name lookup failure: Could not read hosts file " "(resolver error: %s) (system error: %s)", ub_strerror(ret), strerror(errno)); ub_ctx_delete(ctx); -- 2.39.2