Only use default callerid if it's specified (bug #3486)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4944 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Mark Spencer 21 years ago
parent 3f306552dd
commit e89fb66d79

@ -3745,7 +3745,7 @@ static void initreqprep(struct sip_request *req, struct sip_pvt *p, char *cmd, c
l = p->owner->cid.cid_num;
n = p->owner->cid.cid_name;
}
if (!l || !ast_isphonenumber(l))
if ((!l || !ast_isphonenumber(l)) && default_callerid[0])
l = default_callerid;
/* if user want's his callerid restricted */
if (p->callingpres & AST_PRES_PROHIB_USER_NUMBER_NOT_SCREENED) {

Loading…
Cancel
Save