diff --git a/DMRAccessControl.cpp b/DMRAccessControl.cpp index 67bd79e..60d2989 100644 --- a/DMRAccessControl.cpp +++ b/DMRAccessControl.cpp @@ -49,7 +49,7 @@ void CDMRAccessControl::init(const std::vector& blacklist, const s bool CDMRAccessControl::validateSrcId(unsigned int id) { if (m_selfOnly) { - if (m_id > 9999999) { // Check that the RF DMR-ID is bigger than 7 digits + if (m_id > 9999999) { // Check that the Config DMR-ID is bigger than 7 digits if ((id == m_id/10) || (id == m_id/100)) { // does RF ID match Config ID / 10 or Config ID / 100 return true; }