Skip to content

Commit 4c498b1

Browse files
committed
MT#55283 bugfix for 91f7b29
Good lord. Change-Id: I3ddc72ab548bef18d9e40ce50c37713ef6bdc034 (cherry picked from commit 1d18f4a) (cherry picked from commit 512a041) (cherry picked from commit d7510e4)
1 parent 72f775f commit 4c498b1

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
@@ -257,7 +257,7 @@ static void call_timer_iterator(call_t *c, struct iterator_helper *hlp) {
257257
tmp_t_reason = OFFER_TIMEOUT;
258258
}
259259

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

263263
next:

0 commit comments

Comments
 (0)