Skip to content

Commit

Permalink
Merge pull request #43 from g0wfv/master
Browse files Browse the repository at this point in the history
Buying Jon a dictionary for Xmas ;)
  • Loading branch information
g4klx committed May 4, 2016
2 parents 3f2e0c1 + 22a85b1 commit fbef96c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions DMRSlot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void CDMRSlot::writeModem(unsigned char *data)

unsigned int id = lc->getSrcId();
if (!validateId(id)) {
LogMessage("DMR Slot %u, invalid access atempt from %u", m_slotNo, id);
LogMessage("DMR Slot %u, invalid access attempt from %u", m_slotNo, id);
delete lc;
return;
}
Expand Down Expand Up @@ -248,7 +248,7 @@ void CDMRSlot::writeModem(unsigned char *data)
unsigned int dstId = dataHeader.getDstId();

if (!validateId(srcId)) {
LogMessage("DMR Slot %u, invalid access atempt from %u", m_slotNo, srcId);
LogMessage("DMR Slot %u, invalid access attempt from %u", m_slotNo, srcId);
return;
}

Expand Down Expand Up @@ -306,7 +306,7 @@ void CDMRSlot::writeModem(unsigned char *data)
unsigned int dstId = csbk.getDstId();

if (!validateId(srcId)) {
LogMessage("DMR Slot %u, invalid access atempt from %u", m_slotNo, srcId);
LogMessage("DMR Slot %u, invalid access attempt from %u", m_slotNo, srcId);
return;
}

Expand Down Expand Up @@ -454,7 +454,7 @@ void CDMRSlot::writeModem(unsigned char *data)
if (lc != NULL) {
unsigned int id = lc->getSrcId();
if (!validateId(id)) {
LogMessage("DMR Slot %u, invalid access atempt from %u", m_slotNo, id);
LogMessage("DMR Slot %u, invalid access attempt from %u", m_slotNo, id);
delete lc;
return;
}
Expand Down

0 comments on commit fbef96c

Please sign in to comment.