diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2019-02-17 14:52:17 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2019-02-17 14:52:17 +0000 |
commit | ecfdf4b88feba8e10edac9071e1820a8eeba4a34 (patch) | |
tree | 2774c517b4379988ed5f4a276669080ab0398da1 /sbin | |
parent | 31e3030aa150b5668473f6aa9c0df30750049abb (diff) |
On log verbosity change we need to restart all resolvers: add missing
DoT resolver.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/unwind/resolver.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/unwind/resolver.c b/sbin/unwind/resolver.c index 44e738a51d7..38edf4f0a53 100644 --- a/sbin/unwind/resolver.c +++ b/sbin/unwind/resolver.c @@ -1,4 +1,4 @@ -/* $OpenBSD: resolver.c,v 1.17 2019/02/17 14:49:15 florian Exp $ */ +/* $OpenBSD: resolver.c,v 1.18 2019/02/17 14:52:16 florian Exp $ */ /* * Copyright (c) 2018 Florian Obser <florian@openbsd.org> @@ -1270,6 +1270,7 @@ restart_resolvers(void) new_recursor(); new_static_forwarders(); + new_static_dot_forwarders(); new_forwarders(); } |