diff options
Diffstat (limited to 'process.cpp')
-rw-r--r-- | process.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/process.cpp b/process.cpp index 96f0439..14bb96c 100644 --- a/process.cpp +++ b/process.cpp @@ -961,6 +961,19 @@ bool cProcessInfosatepg::CheckAnnouncement(char *s,cInfosatevent *iEvent) { // just ignore this } + + else if ((strlen(s)>=16) && (!strncmp(s,"kabel eins Trick",16))) + { + // just ignore this + } + else if ((strlen(s)>=5) && (!strncmp(s,"JETIX",5))) + { + // just ignore this + } + else if ((strlen(s)>=11) && (!strncmp(s,"DISNEY TIME",11))) + { + // just ignore this + } else ret=false; return ret; } |