From 5fa4da4caf062fe56b8f0216860cc49dcb00d11f Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Fri, 18 Aug 2023 11:13:56 -0400 Subject: [PATCH] correct display of redundant grant transmit startup message; --- src/p25/Control.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p25/Control.cpp b/src/p25/Control.cpp index dae0e88d..a4b8ebee 100644 --- a/src/p25/Control.cpp +++ b/src/p25/Control.cpp @@ -445,7 +445,7 @@ void Control::setOptions(yaml::Node& conf, bool supervisor, const std::string cw LogInfo(" Unit-to-Unit Availability Check: %s", m_control->m_unitToUnitAvailCheck ? "yes" : "no"); LogInfo(" Explicit Source ID Support: %s", m_allowExplicitSourceId ? "yes" : "no"); - if (!m_control->m_redundantGrant) { + if (m_control->m_redundantGrant) { LogInfo(" Redundant Grant Transmit: yes"); } }