mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Fixed the 'system time seen...' message in case of overlapping timers
This commit is contained in:
parent
4558fa70b1
commit
3b67f70b9d
1
HISTORY
1
HISTORY
@ -794,3 +794,4 @@ Video Disk Recorder Revision History
|
|||||||
- The new setup parameter SplitEditedFiles can be used to control whether or
|
- The new setup parameter SplitEditedFiles can be used to control whether or
|
||||||
not the result of an editing process shall be written into separate files.
|
not the result of an editing process shall be written into separate files.
|
||||||
- Fixed handling repeat function when using LIRC (thanks to Matthias Weingart).
|
- Fixed handling repeat function when using LIRC (thanks to Matthias Weingart).
|
||||||
|
- Fixed the "system time seen..." message in case of overlapping timers.
|
||||||
|
5
vdr.c
5
vdr.c
@ -22,7 +22,7 @@
|
|||||||
*
|
*
|
||||||
* The project's page is at http://www.cadsoft.de/people/kls/vdr
|
* The project's page is at http://www.cadsoft.de/people/kls/vdr
|
||||||
*
|
*
|
||||||
* $Id: vdr.c 1.79 2001/09/23 14:33:39 kls Exp $
|
* $Id: vdr.c 1.80 2001/09/30 11:42:58 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
@ -355,7 +355,8 @@ int main(int argc, char *argv[])
|
|||||||
cRecordControls::Process(Now);
|
cRecordControls::Process(Now);
|
||||||
cTimer *Timer = Timers.GetMatch(Now);
|
cTimer *Timer = Timers.GetMatch(Now);
|
||||||
if (Timer) {
|
if (Timer) {
|
||||||
dsyslog(LOG_INFO, "system time seen is %s", ctime(&Now));
|
if (!Timer->pending)
|
||||||
|
dsyslog(LOG_INFO, "system time seen is %s", ctime(&Now));
|
||||||
if (!cRecordControls::Start(Timer))
|
if (!cRecordControls::Start(Timer))
|
||||||
Timer->SetPending(true);
|
Timer->SetPending(true);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user