summaryrefslogtreecommitdiff
path: root/vdr.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-03-19 13:32:27 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-03-19 13:32:27 +0100
commit7fb99e696ffa2d0d9f0fb8e4d1c7d13fca96d94f (patch)
treee7419c6fab5cc5e7844ae599725d33c3e8b6538e /vdr.c
parentdc5df40aa3effe858083461cc0539b907aee717a (diff)
downloadvdr-7fb99e696ffa2d0d9f0fb8e4d1c7d13fca96d94f.tar.gz
vdr-7fb99e696ffa2d0d9f0fb8e4d1c7d13fca96d94f.tar.bz2
Fixed the shutdown timeout
Diffstat (limited to 'vdr.c')
-rw-r--r--vdr.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/vdr.c b/vdr.c
index 5e17a37d..62e17fa3 100644
--- a/vdr.c
+++ b/vdr.c
@@ -22,7 +22,7 @@
*
* The project's page is at http://www.cadsoft.de/vdr
*
- * $Id: vdr.c 1.249 2006/02/05 12:57:10 kls Exp $
+ * $Id: vdr.c 1.250 2006/03/19 13:29:49 kls Exp $
*/
#include <getopt.h>
@@ -1090,13 +1090,16 @@ int main(int argc, char *argv[])
isyslog("executing '%s'", cmd);
SystemExec(cmd);
free(cmd);
+ LastActivity = time(NULL) - Setup.MinUserInactivity * 60 + SHUTDOWNRETRY; // try again later
}
- else if (WatchdogTimeout > 0) {
- alarm(WatchdogTimeout);
- if (signal(SIGALRM, Watchdog) == SIG_IGN)
- signal(SIGALRM, SIG_IGN);
- }
- LastActivity = time(NULL) - Setup.MinUserInactivity * 60 + SHUTDOWNRETRY; // try again later
+ else {
+ LastActivity = Now;
+ if (WatchdogTimeout > 0) {
+ alarm(WatchdogTimeout);
+ if (signal(SIGALRM, Watchdog) == SIG_IGN)
+ signal(SIGALRM, SIG_IGN);
+ }
+ }
UserShutdown = false;
continue; // skip the rest of the housekeeping for now
}