From: Joshua Colp Date: Mon, 23 Jul 2007 14:38:35 +0000 (+0000) Subject: Merged revisions 76561 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~1953 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90dc0cfa85dbe55c7f34e59fb56b97f582d57db4;p=thirdparty%2Fasterisk.git Merged revisions 76561 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r76561 | file | 2007-07-23 11:34:21 -0300 (Mon, 23 Jul 2007) | 14 lines Merged revisions 76560 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r76560 | file | 2007-07-23 11:32:07 -0300 (Mon, 23 Jul 2007) | 6 lines (closes issue #10236) Reported by: homesick Patches: rpid_1.4_75840.patch uploaded by homesick (license 91) Accept Remote Party ID on guest calls. ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@76563 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 0371de8c6a..b8092fb769 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -10205,9 +10205,10 @@ static enum check_auth_result check_user_full(struct sip_pvt *p, struct sip_requ return res; /* Finally, apply the guest policy */ - if (global_allowguest) + if (global_allowguest) { + replace_cid(p, rpid_num, calleridname); res = AUTH_SUCCESSFUL; - else if (global_alwaysauthreject) + } else if (global_alwaysauthreject) res = AUTH_FAKE_AUTH; /* reject with fake authorization request */ else res = AUTH_SECRET_FAILED; /* we don't want any guests, authentication will fail */