mirror of
https://github.com/asterisk/asterisk.git
synced 2026-06-29 03:41:34 -07:00
backport fix from HEAD branch
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-2@7183 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2005-11-21 Kevin P. Fleming <kpfleming@digium.com>
|
||||
|
||||
* channels/chan_sip.c (build_peer): ensure that case changes made to peer names are not ignored during reload operations
|
||||
|
||||
* channels/chan_iax2.c (build_peer and build_user): ensure that case changes made to peer/user names are not ignored during reload operations
|
||||
|
||||
2005-11-21 Russell Bryant <russell@digium.com>
|
||||
|
||||
* Makefile: Revert previous change for Darwin.
|
||||
|
||||
@@ -8104,7 +8104,7 @@ static struct iax2_peer *build_peer(const char *name, struct ast_variable *v, in
|
||||
if (!temponly) {
|
||||
peer = peerl.peers;
|
||||
while(peer) {
|
||||
if (!strcasecmp(peer->name, name)) {
|
||||
if (!strcmp(peer->name, name)) {
|
||||
break;
|
||||
}
|
||||
prev = peer;
|
||||
@@ -8297,7 +8297,7 @@ static struct iax2_user *build_user(const char *name, struct ast_variable *v, in
|
||||
if (!temponly) {
|
||||
user = userl.users;
|
||||
while(user) {
|
||||
if (!strcasecmp(user->name, name)) {
|
||||
if (!strcmp(user->name, name)) {
|
||||
break;
|
||||
}
|
||||
prev = user;
|
||||
|
||||
+5
-1
@@ -11967,7 +11967,11 @@ static struct sip_peer *build_peer(const char *name, struct ast_variable *v, int
|
||||
|
||||
if (!realtime)
|
||||
/* Note we do NOT use find_peer here, to avoid realtime recursion */
|
||||
peer = ASTOBJ_CONTAINER_FIND_UNLINK(&peerl, name);
|
||||
/* We also use a case-sensitive comparison (unlike find_peer) so
|
||||
that case changes made to the peer name will be properly handled
|
||||
during reload
|
||||
*/
|
||||
peer = ASTOBJ_CONTAINER_FIND_UNLINK_FULL(&peerl, name, name, 0, 0, strcmp);
|
||||
|
||||
if (peer) {
|
||||
/* Already in the list, remove it and it will be added back (or FREE'd) */
|
||||
|
||||
Reference in New Issue
Block a user