summaryrefslogtreecommitdiff
path: root/status.c
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2017-06-11 17:49:06 +0200
committerhorchi <vdr@jwendel.de>2017-06-11 17:49:06 +0200
commit62b7aaad6475576fa8f0b415612054d36da74fc3 (patch)
treed095e4e878570d031608d499251a9da8839e5784 /status.c
parent5e865739392dba0929e8b416f18f9688a56c86e7 (diff)
downloadvdr-plugin-epg2vdr-62b7aaad6475576fa8f0b415612054d36da74fc3.tar.gz
vdr-plugin-epg2vdr-62b7aaad6475576fa8f0b415612054d36da74fc3.tar.bz2
2017-06-11: version 1.1.67 (horchi)\n - change: Porting to VDR 2.3.7\n\n1.1.67
Diffstat (limited to 'status.c')
-rw-r--r--status.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/status.c b/status.c
index 7134468..329b852 100644
--- a/status.c
+++ b/status.c
@@ -129,8 +129,10 @@ void cUpdate::Recording(const cDevice* Device, const char* Name, const char* Fil
// get timers lock
#if defined (APIVERSNUM) && (APIVERSNUM >= 20301)
- cTimersLock timersLock(false);
- const cTimers* timers = timersLock.Timers();
+ LOCK_TIMERS_READ;
+ const cTimers* timers = Timers;
+ // cTimersLock timersLock(false);
+ // const cTimers* timers = timersLock.Timers();
#else
const cTimers* timers = &Timers;
#endif