summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2016-12-22 13:42:59 -0800
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2016-12-22 13:42:59 -0800
commit61b7b1856ef5f8dc37ad9198d300a75452bc4152 (patch)
tree08b3fb4fd4489a9716b5c965251a4467a4920839 /sys
parent6c0d9ecc358882e961b0d4b28e435486ce2c2b52 (diff)
downloadgstreamer-plugins-bad-61b7b1856ef5f8dc37ad9198d300a75452bc4152.tar.gz
dvb: parsechannels: replace missleadign error message
Possible failure cases also include not finding the requested channel.
Diffstat (limited to 'sys')
-rw-r--r--sys/dvb/parsechannels.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dvb/parsechannels.c b/sys/dvb/parsechannels.c
index 3a365c1ee..e1620d84c 100644
--- a/sys/dvb/parsechannels.c
+++ b/sys/dvb/parsechannels.c
@@ -901,8 +901,8 @@ set_properties_for_channel (GstElement * dvbbasebin,
case CHANNEL_CONF_FORMAT_DVBV5:
if (!parse_and_configure_from_v5_conf_file (dvbbasebin, filename,
channel_name, error)) {
- GST_WARNING_OBJECT (dvbbasebin, "Could not parse libdvbv5 channel "
- "configuration file '%s'", filename);
+ GST_WARNING_OBJECT (dvbbasebin, "Problem finding information for "
+ "channel '%s' in configuration file '%s'", channel_name, filename);
} else {
GST_INFO_OBJECT (dvbbasebin, "Parsed libdvbv5 channel configuration "
"file");
@@ -912,8 +912,8 @@ set_properties_for_channel (GstElement * dvbbasebin,
case CHANNEL_CONF_FORMAT_ZAP:
if (!parse_and_configure_from_zap_conf_file (dvbbasebin, filename,
channel_name, error)) {
- GST_WARNING_OBJECT (dvbbasebin, "Could not parse ZAP channel "
- "configuration file '%s'", filename);
+ GST_WARNING_OBJECT (dvbbasebin, "Problem finding information for "
+ "channel '%s' in configuration file '%s'", channel_name, filename);
} else {
GST_INFO_OBJECT (dvbbasebin, "Parsed ZAP channel configuration file");
ret = TRUE;