]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Remove stray '-' from filter-aaaa initialisation
authorMark Andrews <marka@isc.org>
Tue, 18 Aug 2020 23:21:59 +0000 (09:21 +1000)
committerMark Andrews <marka@isc.org>
Wed, 19 Aug 2020 00:18:47 +0000 (10:18 +1000)
(cherry picked from commit 2fd5ba6507b2c6477c24a84fd2a884cdf3c4239a)

bin/plugins/filter-aaaa.c

index e787b434712600c655a7899ae7791fda3b3e75ff..38c792fea9e8636cd1af598faa954b17deb699df 100644 (file)
@@ -162,7 +162,7 @@ install_hooks(ns_hooktable_t *hooktable, isc_mem_t *mctx,
                .action_data = inst,
        };
 
-       ns_hook_add(hooktable, mctx, -NS_QUERY_QCTX_INITIALIZED, &filter_init);
+       ns_hook_add(hooktable, mctx, NS_QUERY_QCTX_INITIALIZED, &filter_init);
        ns_hook_add(hooktable, mctx, NS_QUERY_RESPOND_BEGIN, &filter_respbegin);
        ns_hook_add(hooktable, mctx, NS_QUERY_RESPOND_ANY_FOUND,
                    &filter_respanyfound);