summaryrefslogtreecommitdiff
path: root/svdrp.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-01-12 15:11:50 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2012-01-12 15:11:50 +0100
commit4bd9756caf4a21e7e6605d46e104682080cb8a72 (patch)
tree4cd10a210cd60091c40fe86545afc266344f01db /svdrp.c
parent70d4e5105bddded33457342f9d6f1c7502d87b69 (diff)
downloadvdr-4bd9756caf4a21e7e6605d46e104682080cb8a72.tar.gz
vdr-4bd9756caf4a21e7e6605d46e104682080cb8a72.tar.bz2
Fixed the SVDRP command CLRE for a single channel in case there are events that have a timer
Diffstat (limited to 'svdrp.c')
-rw-r--r--svdrp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/svdrp.c b/svdrp.c
index b333202b..a659cd49 100644
--- a/svdrp.c
+++ b/svdrp.c
@@ -10,7 +10,7 @@
* and interact with the Video Disk Recorder - or write a full featured
* graphical interface that sits on top of an SVDRP connection.
*
- * $Id: svdrp.c 2.12 2011/12/04 13:58:33 kls Exp $
+ * $Id: svdrp.c 2.13 2012/01/12 15:02:46 kls Exp $
*/
#include "svdrp.h"
@@ -583,6 +583,10 @@ void cSVDRP::CmdCLRE(const char *Option)
}
}
if (Schedule) {
+ for (cTimer *Timer = Timers.First(); Timer; Timer = Timers.Next(Timer)) {
+ if (ChannelID == Timer->Channel()->GetChannelID().ClrRid())
+ Timer->SetEvent(NULL);
+ }
Schedule->Cleanup(INT_MAX);
cEitFilter::SetDisableUntil(time(NULL) + EITDISABLETIME);
Reply(250, "EPG data of channel \"%s\" cleared", Option);