(closes issue #11006)
Reported by: pj
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@89032
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
else if (p->call_limit && p->inUse)
/* Not busy, but we do have a call */
res = AST_DEVICE_INUSE;
- else if (p->maxms && (p->lastms > p->maxms))
+ else if (p->maxms && ((p->lastms > p->maxms) || (p->lastms < 0)))
/* We don't have a call. Are we reachable at all? Requires qualify= */
res = AST_DEVICE_UNAVAILABLE;
else /* Default reply if we're registered and have no other data */