From: Mark Andrews Date: Tue, 18 Aug 2020 23:21:59 +0000 (+1000) Subject: Remove stray '-' from filter-aaaa initialisation X-Git-Tag: v9.17.5~41^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fd5ba6507b2c6477c24a84fd2a884cdf3c4239a;p=thirdparty%2Fbind9.git Remove stray '-' from filter-aaaa initialisation --- diff --git a/bin/plugins/filter-aaaa.c b/bin/plugins/filter-aaaa.c index d34e0754ea0..25a3ce49277 100644 --- a/bin/plugins/filter-aaaa.c +++ b/bin/plugins/filter-aaaa.c @@ -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);