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
1.2-netsec
Mark Spencer 21 years ago
parent 62cf9a21ea
commit 1406e38d8f

@ -1290,7 +1290,7 @@ static int create_addr(struct sip_pvt *r, char *opeer)
r->promiscredir = p->promiscredir;
strncpy(r->context, p->context,sizeof(r->context)-1);
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) {
r->sa.sin_addr = p->addr.sin_addr;
r->sa.sin_port = p->addr.sin_port;

Loading…
Cancel
Save