aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2008-12-21 11:26:06 +0100
committerghost <andreas.monzner@multimedia-labs.de>2008-12-21 11:26:06 +0100
commitc2369e09f42741f4b1ca200b4fc31f39329a2fa8 (patch)
tree0b55bc939c3dd817a773d9f64c952c0226954e2b /lib/dvb
parent24ec7ceb4ddd2749c60716f35f3f01ba0e2fcc13 (diff)
downloadenigma2-c2369e09f42741f4b1ca200b4fc31f39329a2fa8.tar.gz
enigma2-c2369e09f42741f4b1ca200b4fc31f39329a2fa8.zip
fix non working search case sensitive search (thx to pieterg)
Diffstat (limited to 'lib/dvb')
-rw-r--r--lib/dvb/epgcache.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/dvb/epgcache.cpp b/lib/dvb/epgcache.cpp
index 222cba32..dbb695bd 100644
--- a/lib/dvb/epgcache.cpp
+++ b/lib/dvb/epgcache.cpp
@@ -2193,13 +2193,13 @@ PyObject *eEPGCache::search(ePyObject arg)
// eDebug("match 3 %s %s", str, s.c_str() );
break;
}
- else if (!strncmp((const char*)data+6+idx, str, textlen) )
- {
- descr[++descridx] = it->first;
-// std::string s((const char*)data+6, title_len);
-// eDebug("match 4 %s %s", str, s.c_str() );
- break;
- }
+ }
+ else if (!strncmp((const char*)data+6+idx, str, textlen) )
+ {
+ descr[++descridx] = it->first;
+// std::string s((const char*)data+6, title_len);
+// eDebug("match 4 %s %s", str, s.c_str() );
+ break;
}
++idx;
}