From: Steinar H. Gunderson Date: Mon, 24 Jun 2013 23:06:19 +0000 (+0200) Subject: Use default libunbound paths instead of /etc/resolv.conf and /etc/hosts. X-Git-Url: https://git.sesse.net/?p=itkacl;a=commitdiff_plain;h=9edb4aeb4f7acadd82a52268c66c0d35d0b64f8a Use default libunbound paths instead of /etc/resolv.conf and /etc/hosts. --- 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);