Skip to content
Snippets Groups Projects
Commit a2418cd1 authored by Jeremy McNamara's avatar Jeremy McNamara
Browse files

don't complain on type=h323 itself :)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1864 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 40b77a46
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,9 @@ static struct oh323_alias *build_alias(char *name, struct ast_variable *v)
} else if (!strcasecmp(v->name, "secret")) {
strncpy(alias->secret, v->value, sizeof(alias->secret)-1);
} else {
if (strcasecmp(v->name, "h323")) {
ast_log(LOG_WARNING, "Keyword %s does not make sense in type=h323\n", v->value);
}
}
v = v->next;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment