]> 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>
Tue, 18 Aug 2020 23:21:59 +0000 (09:21 +1000)
bin/plugins/filter-aaaa.c

index d34e0754ea03f8779c93e1345b36388b88d40f73..25a3ce49277de7e7d44f3232c91231ceed6b905a 100644 (file)
@@ -169,7 +169,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);