don't create another endpoint on a reload

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1866 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Jeremy McNamara 22 years ago
parent fd0c9f6c2d
commit 83c63206c1

@ -212,7 +212,7 @@ 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")) {
if (strcasecmp(v->value, "h323")) {
ast_log(LOG_WARNING, "Keyword %s does not make sense in type=h323\n", v->value);
}
}
@ -1402,9 +1402,10 @@ int reload_config(void)
return 1;
}
/* fire up the H.323 Endpoint */
h323_end_point_create();
/* fire up the H.323 Endpoint */
if (!h323_end_point_exist()) {
h323_end_point_create();
}
h323debug=0;
dtmfmode = H323_DTMF_RFC2833;

Loading…
Cancel
Save