Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Min lifespan of deleted recordings is 1 minute, should be 1 hour?



  Hi!  This small fix changes the actual behaviour to the documented one.

diff -rubB old/vdr-1.1.28/recording.c vdr-1.1.28/recording.c
--- old/vdr-1.1.28/recording.c	Sat Apr 12 12:51:44 2003
+++ vdr-1.1.28/recording.c	Sun Apr 27 08:59:07 2003
@@ -78,7 +78,7 @@
                  r0 = r;
               r = Recordings.Next(r);
               }
-        if (r0 && time(NULL) - r0->start > DELETEDLIFETIME * 60) {
+        if (r0 && time(NULL) - r0->start > DELETEDLIFETIME * 3600) {
            r0->Remove();
            RemoveEmptyVideoDirectories();
            LastRemoveCheck += REMOVELATENCY;


-- 
Foreca Ltd                                           Jaakko.Hyvatti@foreca.com
Pursimiehenkatu 29-31 B, FIN-00150 Helsinki, Finland     http://www.foreca.com


-- 
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index