aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-08 22:37:47 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-08 22:37:47 +0000
commitf5f012f9330a3059cbe810fafab8f436877749b9 (patch)
tree1fee208b6ee4bc8e91d0414d646ef5d067a36165
parent76835fc196db426c5e9ff72add6457e33e9a2fe8 (diff)
Fix typo
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1490 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xchannels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 888bef154..cff1ae530 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -434,7 +434,7 @@ static int retrans_pkt(void *data)
} else {
ast_log(LOG_WARNING, "Maximum retries exceeded on call %s for seqno %d (%s)\n", pkt->owner->callid, pkt->seqno, pkt->resp ? "Response" : "Request");
pkt->retransid = -1;
- while(pkt->owner->owner && !ast_mutex_lock(&pkt->owner->owner->lock)) {
+ while(pkt->owner->owner && ast_mutex_lock(&pkt->owner->owner->lock)) {
ast_mutex_unlock(&pkt->owner->lock);
usleep(1);
ast_mutex_lock(&pkt->owner->lock);