From 87177cc103ebdae5ec5337617a423c946ae23af6 Mon Sep 17 00:00:00 2001 From: Jim Hague Date: Fri, 18 Oct 2019 19:04:17 +0100 Subject: [PATCH] Add a Windows implementation of getdns_context_set_resolvconf(). Have it return GETDNS_RETURN_NOT_IMPLEMENTED. This function is listed in the shared library exports, and it's part of the official API, so we need it. --- src/context.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/context.c b/src/context.c index 9413cf19..8d9a1443 100644 --- a/src/context.c +++ b/src/context.c @@ -1112,6 +1112,12 @@ set_os_defaults_windows(getdns_context *context) return GETDNS_RETURN_GOOD; } /* set_os_defaults_windows */ +getdns_return_t +getdns_context_set_resolvconf(getdns_context *context, const char *resolvconf) +{ + return GETDNS_RETURN_NOT_IMPLEMENTED; +} + #else getdns_return_t