Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: fix regression from ac47b98 (for DVB-T/C)
  • Loading branch information
perexg committed Oct 6, 2015
1 parent 2039ca7 commit 5355464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_frontend.c
Expand Up @@ -365,7 +365,7 @@ linuxdvb_frontend_is_enabled ( mpegts_input_t *mi, mpegts_mux_t *mm, int flags )
if (!mpegts_input_is_enabled(mi, mm, flags)) return 0;
if (access(lfe->lfe_fe_path, R_OK | W_OK)) return 0;
if (lfe->lfe_in_setup) return 0;
if (lfe->lfe_type != DVB_TYPE_S) return 0;
if (lfe->lfe_type != DVB_TYPE_S) return 1;

/* check if any "blocking" tuner is running */
LIST_FOREACH(th, &tvh_hardware, th_link) {
Expand Down

0 comments on commit 5355464

Please sign in to comment.