diff options
author | thlo <smarttv640@gmail.com> | 2013-10-04 07:47:08 +0200 |
---|---|---|
committer | thlo <smarttv640@gmail.com> | 2013-10-04 07:47:08 +0200 |
commit | 3f09dd2e39df84babe91248e8543edfd7bc1a884 (patch) | |
tree | 09e784e7a4b3c493bc4c93ee32f71bd9b52e66a9 /smarttvfactory.c | |
parent | 25e84d30eccfebc357506645ad9c5768f33fcc9f (diff) | |
download | vdr-plugin-smarttvweb-3f09dd2e39df84babe91248e8543edfd7bc1a884.tar.gz vdr-plugin-smarttvweb-3f09dd2e39df84babe91248e8543edfd7bc1a884.tar.bz2 |
Fixes /reccmd.xml procedure
Diffstat (limited to 'smarttvfactory.c')
-rwxr-xr-x | smarttvfactory.c | 11 |
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) { |