mirror of
https://github.com/g4klx/DMRGateway.git
synced 2026-01-20 15:20:23 +01:00
XLX: Convert module to UPPER CASE
This commit is contained in:
parent
8ed2565a25
commit
91dbcdf209
2
Conf.cpp
2
Conf.cpp
|
|
@ -277,7 +277,7 @@ bool CConf::read()
|
|||
else if (::strcmp(key, "UserControl") == 0)
|
||||
m_xlxNetworkUserControl = ::atoi(value) ==1;
|
||||
else if (::strcmp(key, "Module") == 0)
|
||||
m_xlxNetworkModule = value[0];
|
||||
m_xlxNetworkModule = ::toupper(value[0]);
|
||||
} else if (section == SECTION_DMR_NETWORK_1) {
|
||||
if (::strcmp(key, "Enabled") == 0)
|
||||
m_dmrNetwork1Enabled = ::atoi(value) == 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue