summaryrefslogtreecommitdiff
path: root/eepg.c
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2012-02-29 18:48:02 +0100
committerDimitar Petrovski <dimeptr@gmail.com>2012-02-29 18:48:02 +0100
commit893cfb6a71d4067880acd3e661f55600ac69e137 (patch)
tree03c62fdf867647fd16abae7cabc5a74a87f9e67f /eepg.c
parent0e293db6129139bb6e7925fa8292f453f1919258 (diff)
parent2f6a786a9dcedfa5566aa47de811007b838b5860 (diff)
downloadvdr-plugin-eepg-893cfb6a71d4067880acd3e661f55600ac69e137.tar.gz
vdr-plugin-eepg-893cfb6a71d4067880acd3e661f55600ac69e137.tar.bz2
Merge branch 'experimental' of ssh://192.168.1.138/home/dime/VDR/PLUGINS/src/eepg into experimental
Conflicts: eepg.c
Diffstat (limited to 'eepg.c')
-rw-r--r--eepg.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/eepg.c b/eepg.c
index bbf4557..cdfe90b 100644
--- a/eepg.c
+++ b/eepg.c
@@ -1015,22 +1015,22 @@ bool cFilterEEPG::InitDictionary (void)
case SKY_IT:
if (sky_tables[0] == NULL) {
FileName += "/sky_it.dict";
- LogD (1, prep("EEPGDebug: loading sky_it.dict"));
+ LogD (4, prep("EEPGDebug: loading sky_it.dict"));
return load_sky_file(FileName.c_str());
} else
- LogD (1, prep("EEPGDebug: sky_it.dict already loaded"));
+ LogD (4, prep("EEPGDebug: sky_it.dict already loaded"));
break;
case SKY_UK:
if (sky_tables[1] == NULL) {
FileName += "/sky_uk.dict";
- LogD (1, prep("EEPGDebug: loading sky_uk.dict"));
+ LogD (4, prep("EEPGDebug: loading sky_uk.dict"));
return load_sky_file(FileName.c_str());
} else
- LogD (1, prep("EEPGDebug: sky_uk.dict already loaded"));
+ LogD (4, prep("EEPGDebug: sky_uk.dict already loaded"));
break;
case FREEVIEW:
if (tables[0][0] == NULL) {
- LogD (1, prep("EEPGDebug: loading freesat.dict"));
+ LogD (4, prep("EEPGDebug: loading freesat.dict"));
FileName += "/freesat.t1";
if (!load_freesat_file (1, FileName.c_str()))
return false;
@@ -1038,15 +1038,12 @@ bool cFilterEEPG::InitDictionary (void)
FileName += "/freesat.t2";
return load_freesat_file (2, FileName.c_str());
} else
- LogD (1, prep("EEPGDebug: freesat.dict already loaded"));
+ LogD (4, prep("EEPGDebug: freesat.dict already loaded"));
break;
default:
LogE (0 ,prep("Error, wrong format detected in ReadFileDictionary. Format = %i."), Format);
return false;
}
-// if ((Format == SKY_IT) || (Format == SKY_UK)) { //SKY
-// return load_sky_file(FileName.c_str());
-// } //if Format == 3 || Format == 4
return true;
}