correct behavior change introduced by issue #5448 patch

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6805 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-10-17 13:53:50 +00:00
parent 43fd4d64b0
commit 7a59bc42c8

View File

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