From cbd17382af06e468575c691f646fc0984b39901e Mon Sep 17 00:00:00 2001 From: Ruben d'Arco Date: Sun, 24 Aug 2014 18:31:49 +0200 Subject: [PATCH] Do not retrieve message details for TSIG Small optimization. --- pdns/rfc2136handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/rfc2136handler.cc b/pdns/rfc2136handler.cc index 1baf9dda34..609ebe07a6 100644 --- a/pdns/rfc2136handler.cc +++ b/pdns/rfc2136handler.cc @@ -693,7 +693,7 @@ int PacketHandler::processUpdate(DNSPacket *p) { TSIGRecordContent trc; string inputkey, message; - if (! p->getTSIGDetails(&trc, &inputkey, &message)) { + if (! p->getTSIGDetails(&trc, &inputkey, 0)) { L<