mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-17 15:29:05 +00:00
don't replace CLID/CNAM when RPID is being generated (issue #5301)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6689 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4630,8 +4630,8 @@ static void initreqprep(struct sip_request *req, struct sip_pvt *p, int sipmetho
|
|||||||
}
|
}
|
||||||
if (!l || (!ast_isphonenumber(l) && default_callerid[0]))
|
if (!l || (!ast_isphonenumber(l) && default_callerid[0]))
|
||||||
l = default_callerid;
|
l = default_callerid;
|
||||||
/* if user want's his callerid restricted */
|
/* if we are not sending RPID and user wants his callerid restricted */
|
||||||
if ((p->callingpres & AST_PRES_RESTRICTION) != AST_PRES_ALLOWED) {
|
if (!ast_test_flag(p, SIP_SENDRPID) && ((p->callingpres & AST_PRES_RESTRICTION) != AST_PRES_ALLOWED)) {
|
||||||
l = CALLERID_UNKNOWN;
|
l = CALLERID_UNKNOWN;
|
||||||
n = l;
|
n = l;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user