mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 08:11:21 +00:00
Try call if call is 0 or more (bug #2935)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4347 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1290,7 +1290,7 @@ static int create_addr(struct sip_pvt *r, char *opeer)
|
|||||||
r->promiscredir = p->promiscredir;
|
r->promiscredir = p->promiscredir;
|
||||||
strncpy(r->context, p->context,sizeof(r->context)-1);
|
strncpy(r->context, p->context,sizeof(r->context)-1);
|
||||||
if ((p->addr.sin_addr.s_addr || p->defaddr.sin_addr.s_addr) &&
|
if ((p->addr.sin_addr.s_addr || p->defaddr.sin_addr.s_addr) &&
|
||||||
(!p->maxms || ((p->lastms > 0) && (p->lastms <= p->maxms)))) {
|
(!p->maxms || ((p->lastms >= 0) && (p->lastms <= p->maxms)))) {
|
||||||
if (p->addr.sin_addr.s_addr) {
|
if (p->addr.sin_addr.s_addr) {
|
||||||
r->sa.sin_addr = p->addr.sin_addr;
|
r->sa.sin_addr = p->addr.sin_addr;
|
||||||
r->sa.sin_port = p->addr.sin_port;
|
r->sa.sin_port = p->addr.sin_port;
|
||||||
|
|||||||
Reference in New Issue
Block a user