Merge remote-tracking branch 'origin/bug_747_cancel_waiting_tasks'
[enigma2.git] / lib / dvb / db.cpp
index 47b5427eca1c65933d68845c499c0323d82ea059..0547407132b3b9e765e83d4314b63cb89095398b 100644 (file)
@@ -615,17 +615,16 @@ void eDVBDB::loadBouquet(const char *path)
        p+=path;
        eDebug("loading bouquet... %s", p.c_str());
        FILE *fp=fopen(p.c_str(), "rt");
-       int entries=0;
        if (!fp)
        {
                eDebug("can't open %s: %m", p.c_str());
-               if ( strstr(path, "bouquets.tv") )
+               if (!strcmp(path, "bouquets.tv"))
                {
                        eDebug("recreate bouquets.tv");
                        bouquet.m_bouquet_name="Bouquets (TV)";
                        bouquet.flushChanges();
                }
-               else if ( strstr(path, "bouquets.radio") )
+               else if (!strcmp(path, "bouquets.radio"))
                {
                        eDebug("recreate bouquets.radio");
                        bouquet.m_bouquet_name="Bouquets (Radio)";
@@ -633,6 +632,7 @@ void eDVBDB::loadBouquet(const char *path)
                }
                return;
        }
+       int entries=0;
        char line[256];
        bool read_descr=false;
        eServiceReference *e = NULL;