From 1d18f4a0bf332d50869fdbcf48fc7c6dd8103e5d Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 4 Sep 2024 08:41:12 -0400 Subject: [PATCH] MT#55283 bugfix for 91f7b29cc Good lord. Change-Id: I3ddc72ab548bef18d9e40ce50c37713ef6bdc034 --- daemon/call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/call.c b/daemon/call.c index 3dbd1437b..2f523669d 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -245,7 +245,7 @@ no_sfd: 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: