Skip to content

Commit

Permalink
MT#55283 bugfix for 91f7b29
Browse files Browse the repository at this point in the history
Good lord.

Change-Id: I3ddc72ab548bef18d9e40ce50c37713ef6bdc034
  • Loading branch information
rfuchs committed Sep 4, 2024
1 parent 3e0b302 commit 1d18f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/call.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ static void call_timer_iterator(call_t *c, struct iterator_helper *hlp) {
tmp_t_reason = OFFER_TIMEOUT;
}

if (timestamp < rtpe_now.tv_sec || rtpe_now.tv_sec - timestamp < check)
if (timestamp > rtpe_now.tv_sec || rtpe_now.tv_sec - timestamp < check)
good = true;

next:
Expand Down

0 comments on commit 1d18f4a

Please sign in to comment.