Index: sources/canbus/FrameInterface.cpp =================================================================== diff -u -r79a6cfcb10472261f3ec26eaf0baf6f1245cd311 -r627b97843f87f5ca8fbd731c6c4a6d9fae4352ce --- sources/canbus/FrameInterface.cpp (.../FrameInterface.cpp) (revision 79a6cfcb10472261f3ec26eaf0baf6f1245cd311) +++ sources/canbus/FrameInterface.cpp (.../FrameInterface.cpp) (revision 627b97843f87f5ca8fbd731c6c4a6d9fae4352ce) @@ -178,13 +178,13 @@ case eDG_Dialin: case eDialin_UI: case eUI_Dialin: - if ( gEnableDialinUnhandled ) { - channelGroup = ChannelGroup::eChannel_Listens; - } else { + if ( gDisableDialinUnhandled ) { channelGroup = ChannelGroup::eChannel_Ignores; + } else { + channelGroup = ChannelGroup::eChannel_Listens; } - debugChannel = ! gEnableDialinUnhandled; // if debug channel is true, the raw can message in logged in the service log. - ok = gEnableDialinUnhandled; // if ok is true then it will be interpreted as unhandled messages. + debugChannel = gDisableDialinUnhandled; // if debug channel is true, the raw can message in logged in the service log. + ok = ! gDisableDialinUnhandled; // if ok is true then it will be interpreted as unhandled messages. break; case eChlid_HD_DG :