]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Try call if call is 0 or more (bug #2935)
authorRussell Bryant <russell@russellbryant.com>
Fri, 26 Nov 2004 01:54:11 +0000 (01:54 +0000)
committerRussell Bryant <russell@russellbryant.com>
Fri, 26 Nov 2004 01:54:11 +0000 (01:54 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4348 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index c3ae0e26944ff4cb3a5c0b1e3627b4d9daad7827..454975a8ffda0843b25e5a1daa66a11348e22816 100755 (executable)
@@ -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;