Mailing List archive

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

[vdr] Major BUG in Master-Timer 0.5.X



#include <hallo.h>



Thanks to Henning Holtschneider i just found a really heavy bug in
Master-Timer.

When the epgdata is fetched via LSTE (which i made default in master-timer
0.5.2) then no epg-entry is found at all.

I don't know if Klause changed the Status-code for LSTE from 250 to 215 or
if it was wrong in master-timer. (My version of VDR doesn't support LSTE
so i couldn't test it.)

Here is the patch.

--- master-timer-0.5.2/processprogram.pl        Mon Mar 25 23:28:45 2002
+++ mt-current/processprogram.pl        Tue Apr  9 00:07:17 2002
@@ -489,7 +489,7 @@
       push (@templines, GetSend ($num, "LSTE"));
     }
     foreach $line (@templines) {
-      if ($line =~ s/^250[- ]//) {
+      if ($line =~ s/^(?:250|215)[- ]//) {
        push @lines, $line;
       }
     }






Bis denn

-- 
Real Programmers consider "what you see is what you get" to be just as 
bad a concept in Text Editors as it is in women. No, the Real Programmer
wants a "you asked for it, you got it" text editor -- complicated, 
cryptic, powerful, unforgiving, dangerous.





Home | Main Index | Thread Index