Commit 5f8474d7 authored by Pavel Vainerman's avatar Pavel Vainerman

minor fixes

parent e216ff95
......@@ -926,11 +926,11 @@ bool RTUExchange::initItem( UniXML_iterator& it )
bool ret = false;
if( rstype == "mtr" )
if( rstype == "mtr" || rstype == "MTR" )
ret = initMTRitem(it,p);
else if( rstype == "rtu" )
else if( rstype == "rtu" || rstype == "RTU" )
ret = initRTUitem(it,p);
else if ( rstype == "rtu188" )
else if ( rstype == "rtu188" || rstype == "RTU188" )
{
ret = initRTU188item(it,p);
if( ret )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment