From 5d2a89708f759393b3d74f9aac8b6c382679466d Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 12 Dec 2016 16:37:18 +0100 Subject: [PATCH] epggrab: quickfix for the previous patch --- src/epggrab.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/epggrab.c b/src/epggrab.c index d4b039530..2802f578a 100644 --- a/src/epggrab.c +++ b/src/epggrab.c @@ -174,7 +174,8 @@ static void _epggrab_load ( void ) epggrab_conf.cron = strdup("# Default config (00:04 and 12:04 everyday)\n4 */12 * * *"); LIST_FOREACH(mod, &epggrab_modules, link) // enable only OTA EIT and OTA PSIP by default if (mod->type == EPGGRAB_OTA && - (mod->subsys == LS_TBL_EIT || mod->subsys == LS_PSIP)) { + ((mod->subsys == LS_TBL_EIT && strcmp(mod->id, "eit") == 0) || + mod->subsys == LS_PSIP)) { mod->enabled = 1; epggrab_activate_module(mod, 1); } -- 2.47.3