From: Felix Domke Date: Fri, 22 Jul 2005 21:28:47 +0000 (+0000) Subject: - disable persistent epgcache in order to avoid tuxbox-libmd5sum X-Git-Tag: 2.6.0~5804 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/0560f2a18da104507c1a44cfc96ad5812307f5f3 - disable persistent epgcache in order to avoid tuxbox-libmd5sum --- diff --git a/lib/dvb/epgcache.cpp b/lib/dvb/epgcache.cpp index 13647f83..bc857176 100644 --- a/lib/dvb/epgcache.cpp +++ b/lib/dvb/epgcache.cpp @@ -6,7 +6,7 @@ #include #include // for usleep #include // for statfs -#include +// #include #include int eventData::CacheSize=0; @@ -573,6 +573,7 @@ void eEPGCache::thread() void eEPGCache::load() { +#if 0 FILE *f = fopen("/hdd/epg.dat", "r"); if (f) { @@ -622,10 +623,12 @@ void eEPGCache::load() } fclose(f); } +#endif } void eEPGCache::save() { +#if 0 struct statfs s; off64_t tmp; if (statfs("/hdd", &s)<0) @@ -680,6 +683,7 @@ void eEPGCache::save() } } } +#endif } RESULT eEPGCache::getInstance(ePtr &ptr)