summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <kls (at) cadsoft (dot) de>2008-04-13 18:00:00 +0200
committerKlaus Schmidinger <kls (at) cadsoft (dot) de>2008-04-13 18:00:00 +0200
commit2f99a45480b49dae6071e75bb2ef88877bd10d78 (patch)
tree98ad3e7da8a80ff8ed5be24dd6c041a2f253eb08 /timers.c
parentfa56503b9a050ec0f0445d48f9bc167b9abe5ee1 (diff)
downloadvdr-patch-lnbsharing-2f99a45480b49dae6071e75bb2ef88877bd10d78.tar.gz
vdr-patch-lnbsharing-2f99a45480b49dae6071e75bb2ef88877bd10d78.tar.bz2
Version 1.6.0-1vdr-1.6.0-1
- Fixed handling the counter in detection of pre 1.3.19 PS data (thanks to Reinhard Nissl). - Improved logging system time changes to avoid problems on slow systems under heavy load (suggested by Helmut Auer). - Fixed initializing the timer's flags in the cTimer copy constructor (thanks to Andreas Mair). - Increased the time between checking the CAM status to 500ms to avoid problems with some CAMs (reported by Arthur Konovalov).
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/timers.c b/timers.c
index c76511e..356d879 100644
--- a/timers.c
+++ b/timers.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: timers.c 1.73 2008/02/16 14:47:40 kls Exp $
+ * $Id: timers.c 1.73.1.1 2008/04/13 12:47:12 kls Exp $
*/
#include "timers.h"
@@ -92,6 +92,7 @@ cTimer::cTimer(const cTimer &Timer)
channel = NULL;
aux = NULL;
event = NULL;
+ flags = tfNone;
*this = Timer;
}