From 2fd5ba6507b2c6477c24a84fd2a884cdf3c4239a Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Wed, 19 Aug 2020 09:21:59 +1000 Subject: [PATCH] Remove stray '-' from filter-aaaa initialisation --- bin/plugins/filter-aaaa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/plugins/filter-aaaa.c b/bin/plugins/filter-aaaa.c index d34e0754ea..25a3ce4927 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);