Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
epggrab: quickfix for the previous patch
  • Loading branch information
perexg committed Dec 12, 2016
1 parent caabd1b commit 5d2a897
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/epggrab.c
Expand Up @@ -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);
}
Expand Down

0 comments on commit 5d2a897

Please sign in to comment.