Add more NXDN support files.

This commit is contained in:
Jonathan Naylor
2018-01-17 21:21:25 +00:00
parent d0bb0dc5f3
commit 5291a6427c
25 changed files with 1190 additions and 39 deletions

View File

@@ -118,7 +118,7 @@ bool CDMRLookup::load()
{
FILE* fp = ::fopen(m_filename.c_str(), "rt");
if (fp == NULL) {
LogWarning("Cannot open the Id lookup file - %s", m_filename.c_str());
LogWarning("Cannot open the DMR Id lookup file - %s", m_filename.c_str());
return false;
}
@@ -152,7 +152,7 @@ bool CDMRLookup::load()
if (size == 0U)
return false;
LogInfo("Loaded %u Ids to the callsign lookup table", size);
LogInfo("Loaded %u Ids to the DMR callsign lookup table", size);
return true;
}