From: Jaroslav Kysela Date: Mon, 17 Mar 2014 09:32:47 +0000 (+0100) Subject: Obvious typo fixes X-Git-Tag: v4.1~2222^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F352%2Fhead;p=thirdparty%2Ftvheadend.git Obvious typo fixes --- diff --git a/src/epggrab/otamux.c b/src/epggrab/otamux.c index 8beb44513..feb6d5f53 100644 --- a/src/epggrab/otamux.c +++ b/src/epggrab/otamux.c @@ -399,7 +399,7 @@ epggrab_ota_load_one ota = calloc(1, sizeof(epggrab_ota_mux_t)); ota->om_mux_uuid = strdup(uuid); ota->om_timeout = htsmsg_get_u32_or_default(c, "timeout", 0); - ota->om_interval = htsmsg_get_u32_or_default(c, "timeout", 0); + ota->om_interval = htsmsg_get_u32_or_default(c, "interval", 0); if (RB_INSERT_SORTED(&epggrab_ota_all, ota, om_global_link, om_id_cmp)) { free(ota->om_mux_uuid); free(ota); diff --git a/src/service_mapper.c b/src/service_mapper.c index 349eee146..fc357afad 100644 --- a/src/service_mapper.c +++ b/src/service_mapper.c @@ -279,7 +279,7 @@ service_mapper_process ( service_t *s ) /* Type tags */ if (service_is_hdtv(s)) { - channel_tag_map(chn, channel_tag_find_by_name("TV", 1)); + channel_tag_map(chn, channel_tag_find_by_name("TV channels", 1)); channel_tag_map(chn, channel_tag_find_by_name("HDTV", 1)); } else if (service_is_sdtv(s)) { channel_tag_map(chn, channel_tag_find_by_name("TV channels", 1));