dect
/
asterisk
Archived
13
0
Fork 0

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: http://svn.digium.com/svn/asterisk/trunk@76563 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2007-07-23 14:38:35 +00:00
parent 5b1638231a
commit 6b2784bedb
1 changed files with 3 additions and 2 deletions

View File

@ -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 */