From: Jaroslav Kysela Date: Mon, 28 Mar 2016 14:32:35 +0000 (+0200) Subject: access: fix thinko X-Git-Tag: v4.2.1~783 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a004ac3f1c79fc70d937268da8d09822055b8e8d;p=thirdparty%2Ftvheadend.git access: fix thinko --- diff --git a/src/access.c b/src/access.c index 5ccb553c5..3899ad9c3 100644 --- a/src/access.c +++ b/src/access.c @@ -618,7 +618,7 @@ access_update(access_t *a, access_entry_t *ae) } if ((!a->aa_theme || a->aa_theme[0] == '\0') && ae->ae_theme && ae->ae_theme[0]) - a->aa_theme = strdup(a->aa_theme); + a->aa_theme = strdup(ae->ae_theme); a->aa_rights |= ae->ae_rights; }