From a42a7a5d632e6ad74fcd6d037bfab11cfab9f3e2 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Mon, 31 Oct 2022 15:58:18 -0400 Subject: [PATCH] fix issue where TSBK/TDULC dumping was not checking correct parameters; --- p25/packet/Trunk.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/p25/packet/Trunk.cpp b/p25/packet/Trunk.cpp index 1ca1fdac..9846e48b 100644 --- a/p25/packet/Trunk.cpp +++ b/p25/packet/Trunk.cpp @@ -1213,8 +1213,8 @@ Trunk::Trunk(Control* p25, network::BaseNetwork* network, bool dumpTSBKData, boo m_adjSiteUpdateTimer.setTimeout(m_adjSiteUpdateInterval); m_adjSiteUpdateTimer.start(); - lc::TSBK::setVerbose(verbose); - lc::TDULC::setVerbose(verbose); + lc::TSBK::setVerbose(dumpTSBKData); + lc::TDULC::setVerbose(dumpTSBKData); } ///