Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DVR: entry - fix the config name parsing
  • Loading branch information
perexg committed Sep 9, 2014
1 parent 34edcf8 commit 8fab744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvr/dvr_db.c
Expand Up @@ -1163,7 +1163,7 @@ dvr_entry_class_config_name_set(void *o, const void *v)
return 0;
cfg = v ? dvr_config_find_by_uuid(v) : NULL;
if (!cfg)
cfg = dvr_config_find_by_name_default("");
cfg = dvr_config_find_by_name_default(v);
if (cfg == NULL) {
if (de->de_config) {
LIST_REMOVE(de, de_config_link);
Expand Down

0 comments on commit 8fab744

Please sign in to comment.