From ebd973b226e2c38aae357ec577b8beb37596ceee Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Thu, 17 Aug 2023 09:58:35 -0400 Subject: [PATCH] invert flag check; --- src/p25/Control.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p25/Control.cpp b/src/p25/Control.cpp index 52bda0cc..bb126dc9 100644 --- a/src/p25/Control.cpp +++ b/src/p25/Control.cpp @@ -421,10 +421,10 @@ void Control::setOptions(yaml::Node& conf, bool supervisor, const std::string cw LogInfo(" Announcement Group: $%04X", m_trunk->m_announcementGroup); LogInfo(" Notify Control: %s", m_notifyCC ? "yes" : "no"); - if (!m_disableNetworkHDU) { + if (m_disableNetworkHDU) { LogInfo(" Disable Network HDUs: yes"); } - if (!m_disableNetworkGrant) { + if (m_disableNetworkGrant) { LogInfo(" Disable Network Grants: yes"); } if (!m_trunk->m_ctrlTSDUMBF) {