From 09f716e1ad37bf2686a8f2e03d058d8cd22718f2 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Mon, 26 May 2014 02:23:33 +0200 Subject: [PATCH] satip: missing comparison --- src/input/mpegts/satip/satip_frontend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/mpegts/satip/satip_frontend.c b/src/input/mpegts/satip/satip_frontend.c index 5846232c..a9681225 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;