summaryrefslogtreecommitdiff
path: root/smarttvfactory.c
diff options
context:
space:
mode:
authorthlo <smarttv640@gmail.com>2013-10-04 07:47:08 +0200
committerthlo <smarttv640@gmail.com>2013-10-04 07:47:08 +0200
commit3f09dd2e39df84babe91248e8543edfd7bc1a884 (patch)
tree09e784e7a4b3c493bc4c93ee32f71bd9b52e66a9 /smarttvfactory.c
parent25e84d30eccfebc357506645ad9c5768f33fcc9f (diff)
downloadvdr-plugin-smarttvweb-3f09dd2e39df84babe91248e8543edfd7bc1a884.tar.gz
vdr-plugin-smarttvweb-3f09dd2e39df84babe91248e8543edfd7bc1a884.tar.bz2
Fixes /reccmd.xml procedure
Diffstat (limited to 'smarttvfactory.c')
-rwxr-xr-xsmarttvfactory.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/smarttvfactory.c b/smarttvfactory.c
index c6b0524..a2154eb 100755
--- a/smarttvfactory.c
+++ b/smarttvfactory.c
@@ -707,13 +707,12 @@ void SmartTvServer::initRecCmds() {
}
void SmartTvServer::initCmdCmds() {
- mRecMsg = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
- mRecMsg += "<cmdcmds>\n";
- mRecMsg += processNestedItemList("", &Commands, &mCmdCmds);
- mRecMsg += "</cmdcmds>\n";
-
- *(mLog.log()) << "reccmds.conf parsed" << endl;
+ mCmdMsg = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
+ mCmdMsg += "<cmdcmds>\n";
+ mCmdMsg += processNestedItemList("", &Commands, &mCmdCmds);
+ mCmdMsg += "</cmdcmds>\n";
+ *(mLog.log()) << "commands.conf parsed" << endl;
}
void SmartTvServer::initServer(string dir) {