1
0
mirror of https://github.com/rofafor/vdr-plugin-satip.git synced 2023-10-10 13:37:42 +02:00

Fixed the LOGG SVDRP command output.

This commit is contained in:
Rolf Ahrenberg 2014-12-08 21:37:17 +02:00
parent b9d89b8c1d
commit 60a2b1fecf

View File

@ -406,7 +406,7 @@ cString cPluginSatip::SVDRPCommand(const char *commandP, const char *optionP, in
else if (strcasecmp(commandP, "LOGG") == 0) {
if (optionP && *optionP)
SatipConfig.SetLoggingMode(strtol(optionP, NULL, 0));
return cString::sprintf("SATIP logging mode: 0x%02X\n", SatipConfig.GetLoggingMode());
return cString::sprintf("SATIP logging mode: 0x%04X\n", SatipConfig.GetLoggingMode());
}
return NULL;