From: Damjan Marion Date: Mon, 26 May 2014 00:23:33 +0000 (+0200) Subject: satip: missing comparison X-Git-Tag: v4.1~2054^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09f716e1ad37bf2686a8f2e03d058d8cd22718f2;p=thirdparty%2Ftvheadend.git satip: missing comparison --- diff --git a/src/input/mpegts/satip/satip_frontend.c b/src/input/mpegts/satip/satip_frontend.c index 5846232c7..a9681225d 100644 --- a/src/input/mpegts/satip/satip_frontend.c +++ b/src/input/mpegts/satip/satip_frontend.c @@ -1332,7 +1332,7 @@ satip_frontend_create override = htsmsg_get_str(conf, id); if (override) { i = dvb_str2type(override); - if ((i == DVB_TYPE_T || i == DVB_TYPE_C || DVB_TYPE_S) && i != type) + if ((i == DVB_TYPE_T || i == DVB_TYPE_C || i == DVB_TYPE_S) && i != type) type = i; else override = NULL;