Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SAT>IP Client: do not show 12345678 error
  • Loading branch information
perexg committed Mar 25, 2015
1 parent 3fab60a commit baab770
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/input/mpegts/satip/satip_frontend.c
Expand Up @@ -1282,7 +1282,10 @@ satip_frontend_input_thread ( void *aux )
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;
}
Expand Down

0 comments on commit baab770

Please sign in to comment.