summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorz3bra <contactatz3bradotorg>2017-03-02 22:37:29 +0100
committerz3bra <contactatz3bradotorg>2017-03-02 22:37:29 +0100
commit8980dc40eef790b5f706068db6c34abaf0637594 (patch)
tree48b773d784a7c96d91256ad91045650c65143273
parent2206ba0a97aa9daa61530a21b5970f4784f10e07 (diff)
Reset INCOMPLETE flag when closing FCALL_IN
-rw-r--r--ratox.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ratox.c b/ratox.c
index 1694aca..f54ba93 100644
--- a/ratox.c
+++ b/ratox.c
@@ -481,6 +481,7 @@ sendfriendcalldata(struct friend *f)
framesize * sizeof(int16_t) - (f->av.state & INCOMPLETE ? f->av.n : 0));
if (n == 0) {
f->av.state &= ~OUTGOING;
+ f->av.state &= ~INCOMPLETE;
return;
} else if (n < 0 || f->av.state & RINGING) {
/* discard data as long as the call is not established */