Archived
14
0
Fork 0

Merged revisions 76087 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r76087 | file | 2007-07-20 14:20:09 -0300 (Fri, 20 Jul 2007) | 14 lines

Merged revisions 76080 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r76080 | file | 2007-07-20 14:16:48 -0300 (Fri, 20 Jul 2007) | 6 lines

(closes issue #10247)
Reported by: fkasumovic
Patches:
      chan_sip.patch uploaded by fkasumovic (license #101)
Drop any peer realm authentication entries when reloading so multiple entries do not get added to the peer.

........

................


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@76091 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2007-07-20 17:21:23 +00:00
parent 6d6295d82f
commit ae747fb447

View file

@ -16971,6 +16971,11 @@ static struct sip_peer *build_peer(const char *name, struct ast_variable *v, str
peer->chanvars = NULL;
/* XXX should unregister ? */
}
/* If we have realm authentication information, remove them (reload) */
clear_realm_authentication(peer->auth);
peer->auth = NULL;
for (; v || ((v = alt) && !(alt=NULL)); v = v->next) {
if (handle_common_options(&peerflags[0], &mask[0], v))
continue;