Merge pull request #108 from dl1mx/master

Update Conf.cpp
This commit is contained in:
Jonathan Naylor 2021-11-14 19:52:46 +00:00 committed by GitHub
commit b6586411e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -978,6 +978,8 @@ bool CConf::read()
m_aprsPort = (unsigned short)::atoi(value);
else if (::strcmp(key, "Suffix") == 0)
m_aprsSuffix = value;
else if (::strcmp(key, "Description") == 0)
m_aprsDescription = value;
} else if (section == SECTION_DYNAMIC_TG_CONTROL) {
if (::strcmp(key, "Enabled") == 0)
m_dynamicTGControlEnabled = ::atoi(value) == 1;