diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-03-10 13:02:05 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-03-10 13:02:05 +0100 |
commit | 93ad92da140c982365335f2452e9eb46aa2dc846 (patch) | |
tree | 97bddd421dbc0b71a79ef0cfa23be2e36181f5e2 | |
parent | df2f3335eb5cbd396cbbeca5ff3bf3c73cafcfb4 (diff) | |
download | vdr-93ad92da140c982365335f2452e9eb46aa2dc846.tar.gz vdr-93ad92da140c982365335f2452e9eb46aa2dc846.tar.bz2 |
Fixed handling user activity for shutdown
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | vdr.c | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -5139,6 +5139,8 @@ Video Disk Recorder Revision History parameter to 0 turns off the automatic channel switching, and the user will have to confirm the entry by pressing the "Ok" key. -2007-03-03: Version 1.5.2 +2007-03-10: Version 1.5.2 - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). +- Fixed handling user activity for shutdown, which I had messed when adopting Udo's + original patch (thanks to Udo Richter). @@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/vdr * - * $Id: vdr.c 1.285 2007/02/25 11:27:36 kls Exp $ + * $Id: vdr.c 1.286 2007/03/10 13:00:22 kls Exp $ */ #include <getopt.h> @@ -1162,7 +1162,7 @@ int main(int argc, char *argv[]) ShutdownHandler.countdown.Cancel(); } - if (!Interact && !cRecordControls::Active() && !cCutter::Active() && !Interface->HasSVDRPConnection() && cRemote::LastActivity() > ACTIVITYTIMEOUT) { + if (!Interact && !cRecordControls::Active() && !cCutter::Active() && !Interface->HasSVDRPConnection() && (time(NULL) - cRemote::LastActivity()) > ACTIVITYTIMEOUT) { // Handle housekeeping tasks // Shutdown: |