From: YmrDtnJu Date: Fri, 5 Jun 2020 13:36:58 +0000 (+0200) Subject: resolve: enable RES_TRUSTAD towards the 127.0.0.53 stub resolver X-Git-Tag: v246-rc1~203 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a742f9828ea73d9c2c9bafe701c10fe60f058012;p=thirdparty%2Fsystemd.git resolve: enable RES_TRUSTAD towards the 127.0.0.53 stub resolver glibc 2.31 strips the AD flag, unless either the application specifies RES_TRUSTAD or the options in resolv.conf contain trust-ad. See https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=NEWS;hb=HEAD --- diff --git a/src/resolve/resolv.conf b/src/resolve/resolv.conf index c3079aca1d4..dc5ac05532a 100644 --- a/src/resolve/resolv.conf +++ b/src/resolve/resolv.conf @@ -15,4 +15,4 @@ # operation for /etc/resolv.conf. nameserver 127.0.0.53 -options edns0 +options edns0 trust-ad diff --git a/src/resolve/resolved-resolv-conf.c b/src/resolve/resolved-resolv-conf.c index 97aee7abc81..c6f48d6d885 100644 --- a/src/resolve/resolved-resolv-conf.c +++ b/src/resolve/resolved-resolv-conf.c @@ -307,7 +307,7 @@ static int write_stub_resolv_conf_contents(FILE *f, OrderedSet *dns, OrderedSet "# operation for /etc/resolv.conf.\n" "\n" "nameserver 127.0.0.53\n" - "options edns0\n", f); + "options edns0 trust-ad\n", f); if (!ordered_set_isempty(domains)) write_resolv_conf_search(domains, f);