From 60a2b1fecfe12618ee76bdd76c7dbcc2dcc72a24 Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Mon, 8 Dec 2014 21:37:17 +0200 Subject: [PATCH] Fixed the LOGG SVDRP command output. --- satip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/satip.c b/satip.c index d57240e..4edcffd 100644 --- a/satip.c +++ b/satip.c @@ -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;