From 1e6282c92bd02ff56b5ce718e7b136ee3d310996 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Wed, 5 Feb 2025 15:27:01 -0500 Subject: [PATCH] ensure the group flag is set if the LCO is PRIVATE; --- src/common/p25/dfsi/LC.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/p25/dfsi/LC.cpp b/src/common/p25/dfsi/LC.cpp index da8807f4..4463546d 100644 --- a/src/common/p25/dfsi/LC.cpp +++ b/src/common/p25/dfsi/LC.cpp @@ -220,6 +220,9 @@ bool LC::decodeLDU1(const uint8_t* data, uint8_t* imbe) break; } + if (m_control->getLCO() == LCO::PRIVATE) + m_control->setGroup(false); + // by LDU1_VOICE8 we should have all the pertinant RS bytes if (m_frameType == DFSIFrameType::LDU1_VOICE8) { ulong64_t rsValue = 0U;