From: Jaroslav Kysela Date: Mon, 13 Mar 2017 14:46:14 +0000 (+0100) Subject: linuxdvb: minor fix for the previous patch X-Git-Tag: v4.2.1~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7cd8ad3cd1e9e155fb5e95d13dd78439302dd602;p=thirdparty%2Ftvheadend.git linuxdvb: minor fix for the previous patch --- diff --git a/src/input/mpegts/linuxdvb/linuxdvb_frontend.c b/src/input/mpegts/linuxdvb/linuxdvb_frontend.c index 61d24f50b..035f7dd03 100644 --- a/src/input/mpegts/linuxdvb/linuxdvb_frontend.c +++ b/src/input/mpegts/linuxdvb/linuxdvb_frontend.c @@ -432,8 +432,10 @@ linuxdvb_frontend_open_fd ( linuxdvb_frontend_t *lfe, const char *name ) } } - if (lfe->lfe_fe_fd <= 0) + if (lfe->lfe_fe_fd <= 0) { lfe->lfe_fe_fd = tvh_open(lfe->lfe_fe_path, O_RDWR | O_NONBLOCK, 0); + extra = ""; + } tvhtrace(LS_LINUXDVB, "%s - opening FE %s (%d)%s", name, lfe->lfe_fe_path, lfe->lfe_fe_fd, extra);