Skip to content

Commit d00b29e

Browse files
committed
MT#55283 bugfix for 91f7b29
Good lord. Change-Id: I3ddc72ab548bef18d9e40ce50c37713ef6bdc034 (cherry picked from commit 1d18f4a) (cherry picked from commit 512a041)
1 parent 7820f0a commit d00b29e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

daemon/call.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ static void call_timer_iterator(call_t *c, struct iterator_helper *hlp) {
245245
tmp_t_reason = OFFER_TIMEOUT;
246246
}
247247

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

251251
next:

0 commit comments

Comments
 (0)