From 796db6617430294c3aefdf978010a074d5f912e7 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 6 Aug 2014 20:12:12 +0200 Subject: stream_dvb: fix channels.conf preference order channels.conf was never used (even though its config path was resolved). Also remove the non-sense with the access() call. Fixes #987 (untested). --- stream/stream_dvb.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/stream/stream_dvb.c b/stream/stream_dvb.c index 87b2495a51..8695782b7d 100644 --- a/stream/stream_dvb.c +++ b/stream/stream_dvb.c @@ -750,7 +750,6 @@ dvb_config_t *dvb_get_config(stream_t *stream) } void *talloc_ctx = talloc_new(NULL); - conf_file = mp_find_config_file(talloc_ctx, global, "channels.conf"); switch(type) { case TUNER_TER: conf_file = mp_find_config_file(talloc_ctx, global, "channels.conf.ter"); @@ -765,9 +764,11 @@ dvb_config_t *dvb_get_config(stream_t *stream) conf_file = mp_find_config_file(talloc_ctx, global, "channels.conf.atsc"); break; } - - if(conf_file && (access(conf_file, F_OK | R_OK) != 0)) + if (conf_file) { + mp_verbose(log, "Ignoring other channels.conf files.\n"); + } else { conf_file = mp_find_config_file(talloc_ctx, global, "channels.conf"); + } list = dvb_get_channels(log, conf_file, type); talloc_free(talloc_ctx); -- cgit v1.2.3