From: Jaroslav Kysela Date: Wed, 25 Mar 2015 13:34:57 +0000 (+0100) Subject: SAT>IP Client: do not show 12345678 error X-Git-Tag: v4.1~198 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=baab7707a2c985b8b3fe33efdf8acc69b7ec9103;p=thirdparty%2Ftvheadend.git SAT>IP Client: do not show 12345678 error --- diff --git a/src/input/mpegts/satip/satip_frontend.c b/src/input/mpegts/satip/satip_frontend.c index 124520f2c..f658e59bd 100644 --- a/src/input/mpegts/satip/satip_frontend.c +++ b/src/input/mpegts/satip/satip_frontend.c @@ -1282,7 +1282,10 @@ new_tune: rtsp_flags); pthread_mutex_unlock(&lfe->sf_dvr_lock); if (r < 0) { - tvherror("satip", "%s - failed to tune (%i)", buf, r); + if (r != -12345678) + tvherror("satip", "%s - failed to tune (%i)", buf, r); + else + tvhtrace("satip", "%s - mux changed in the middle", buf); satip_frontend_tuning_error(lfe, tr); goto done; }