correct behavior change introduced by issue #5448 patch

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6805 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Kevin P. Fleming 20 years ago
parent 43fd4d64b0
commit 7a59bc42c8

@ -150,15 +150,10 @@ char *ast_variable_retrieve(const struct ast_config *config, const char *categor
struct ast_variable *v; struct ast_variable *v;
if (category) { if (category) {
char *val = NULL;
for (v = ast_variable_browse(config, category); v; v = v->next) { for (v = ast_variable_browse(config, category); v; v = v->next) {
if (variable == v->name)
return v->value;
if (!strcasecmp(variable, v->name)) if (!strcasecmp(variable, v->name))
val = v->value; return v->value;
} }
if (val)
return val;
} else { } else {
struct ast_category *cat; struct ast_category *cat;

Loading…
Cancel
Save