Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
access: fix thinko
  • Loading branch information
perexg committed Mar 28, 2016
1 parent e271083 commit a004ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/access.c
Expand Up @@ -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;
}
Expand Down

0 comments on commit a004ac3

Please sign in to comment.