aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/epgcache.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-07-22 21:28:47 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-07-22 21:28:47 +0000
commit0560f2a18da104507c1a44cfc96ad5812307f5f3 (patch)
tree0754758e4f79a6795aa103bcec4eb4b801341c7f /lib/dvb/epgcache.cpp
parent06c718113b606c22f35448e2abf298e26d5d768e (diff)
downloadenigma2-0560f2a18da104507c1a44cfc96ad5812307f5f3.tar.gz
enigma2-0560f2a18da104507c1a44cfc96ad5812307f5f3.zip
- disable persistent epgcache in order to avoid tuxbox-libmd5sum
Diffstat (limited to 'lib/dvb/epgcache.cpp')
-rw-r--r--lib/dvb/epgcache.cpp6
1 files changed, 5 insertions, 1 deletions
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 <time.h>
#include <unistd.h> // for usleep
#include <sys/vfs.h> // for statfs
-#include <libmd5sum.h>
+// #include <libmd5sum.h>
#include <lib/base/eerror.h>
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<eEPGCache> &ptr)