The parsing of those extra parameters is buggy and completely useless since they are parsed individually later on in the code. Signed-off-by: Guy Martin <gmsoft@xxxxxxxxxxxx> diff --git a/lib/libdvbv5/dvb-file.c b/lib/libdvbv5/dvb-file.c index d8d583c..aa42a37 100644 --- a/lib/libdvbv5/dvb-file.c +++ b/lib/libdvbv5/dvb-file.c @@ -392,31 +392,6 @@ static int fill_entry(struct dvb_entry *entry, char *key, char *value) return 0; } - /* Handle the DVB extra DTV_foo properties */ - for (i = 0; i < ARRAY_SIZE(dvb_user_name); i++) { - if (!dvb_user_name[i]) - continue; - if (!strcasecmp(key, dvb_user_name[i])) - break; - } - if (i < ARRAY_SIZE(dvb_user_name)) { - const char * const *attr_name = dvb_attr_names(i); - n_prop = entry->n_props; - entry->props[n_prop].cmd = i + DTV_USER_COMMAND_START; - if (!attr_name || !*attr_name) - entry->props[n_prop].u.data = atol(value); - else { - for (j = 0; attr_name[j]; j++) - if (!strcasecmp(value, attr_name[j])) - break; - if (!attr_name[j]) - return -2; - entry->props[n_prop].u.data = j + DTV_USER_COMMAND_START; - } - entry->n_props++; - return 0; - } - /* Handle the other properties */ if (!strcasecmp(key, "SERVICE_ID")) { -- 1.8.1.5 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html