Rename DMR access control

This commit is contained in:
Carsten Schmiemann 2022-07-29 22:33:32 +02:00
parent bbd72df6fc
commit ca8571c276
1 changed files with 2 additions and 2 deletions

View File

@ -67,11 +67,11 @@ bool CDMRControl::processWakeup(const unsigned char* data)
bool ret = CDMRAccessControl::validateSrcId(srcId);
if (!ret) {
LogMessage("Invalid Downlink Activate received from %s", src.c_str());
LogMessage("Blocked downlink activation from %s", src.c_str());
return false;
}
LogMessage("Downlink Activate received from %s", src.c_str());
LogMessage("Downlink request received from %s", src.c_str());
return true;
}