From 5c73884d17ca5534dc973cdbb0cecc0b0e7740d1 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 21 Sep 2020 14:37:36 +0200 Subject: [PATCH] Fix rec_control wipe-cache-typed (likely a merge error) --- pdns/rec_channel_rec.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/rec_channel_rec.cc b/pdns/rec_channel_rec.cc index f9faa477cd..733d3aacc2 100644 --- a/pdns/rec_channel_rec.cc +++ b/pdns/rec_channel_rec.cc @@ -396,7 +396,7 @@ static string doDumpFailedServers(T begin, T end) uint64_t* pleaseWipeCache(const DNSName& canon, bool subtree, uint16_t qtype) { - return new uint64_t(g_recCache->doWipeCache(canon, subtree)); + return new uint64_t(g_recCache->doWipeCache(canon, subtree, qtype)); } uint64_t* pleaseWipePacketCache(const DNSName& canon, bool subtree, uint16_t qtype) -- 2.47.2