diff options
author | thlo <t.lohmar@gmx.de> | 2013-09-29 16:07:48 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-09-29 16:07:48 +0200 |
commit | c001a1556b1d159eff37591f35eb8968676e52ca (patch) | |
tree | 9d738228459f1fde2229275c79274d427bf8d995 /httpresource.c | |
parent | c1a548c89f8f843b76a2934bd0b89ac13ce22fcb (diff) | |
parent | bd7d535d502a4576e1b3ee21b978934c27d09521 (diff) | |
download | vdr-plugin-smarttvweb-c001a1556b1d159eff37591f35eb8968676e52ca.tar.gz vdr-plugin-smarttvweb-c001a1556b1d159eff37591f35eb8968676e52ca.tar.bz2 |
Merge branch 'master' of git-vdr@projects.vdr-developer.org:vdr-plugin-smarttvweb.git
Diffstat (limited to 'httpresource.c')
-rwxr-xr-x | httpresource.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/httpresource.c b/httpresource.c index 76f7956..854cf96 100755 --- a/httpresource.c +++ b/httpresource.c @@ -352,14 +352,13 @@ int cHttpResource::processRequest() { } //thlo for testing purpose -/* - if (mPath.compare("/modifyTimer") == 0) { + + if (mPath.compare("/activateTimer") == 0) { mResponse = new cResponseMemBlk(this); - ((cResponseMemBlk*)mResponse)->receiveModTimerReq(); + ((cResponseMemBlk*)mResponse)->receiveActTimerReq(); return OKAY; } -*/ - //thlo for testing purpose + if (mPath.compare("/addTimer") == 0) { mResponse = new cResponseMemBlk(this); ((cResponseMemBlk*)mResponse)->receiveAddTimerReq(); |