Try call if call is 0 or more (bug #2935)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4348 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Russell Bryant 21 years ago
parent 187942d00a
commit 1e75116e74

@ -1339,7 +1339,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