summaryrefslogtreecommitdiff
path: root/global.h
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2009-01-08 10:30:47 +0100
committerJochen Dolze <vdr@dolze.de>2009-01-08 10:30:47 +0100
commit6fb31a9477d93e019b0a2b4ef8457288ab0a40f4 (patch)
treeec1be57a98dca46122f3c4db262f9222c5cb3bd4 /global.h
parentc232d074e05316a418320b5c5027aa68d53bc74a (diff)
downloadvdr-plugin-infosatepg-6fb31a9477d93e019b0a2b4ef8457288ab0a40f4.tar.gz
vdr-plugin-infosatepg-6fb31a9477d93e019b0a2b4ef8457288ab0a40f4.tar.bz2
Fixed SVDRP segfault
Improved channel chooser again
Diffstat (limited to 'global.h')
-rw-r--r--global.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/global.h b/global.h
index e7a4810..4c60160 100644
--- a/global.h
+++ b/global.h
@@ -130,11 +130,11 @@ public:
dsyslog("infosatepg: time=%i",Time);
if (Time==-1) return;
if (wakeuptime!=-1) return; // already set
+ wakeuptime=Time;
int hour,minute;
hour=(int) (wakeuptime/100);
minute=wakeuptime-(hour*100);
isyslog("infosatepg: wakeup set to %02i:%02i", hour,minute);
- wakeuptime=Time;
}
int WakeupTime()
{