Browse Source

MT#55283 bugfix for 91f7b29cc

Good lord.

Change-Id: I3ddc72ab548bef18d9e40ce50c37713ef6bdc034
(cherry picked from commit 1d18f4a0bf)
(cherry picked from commit 512a041649)
mr12.5.1
Richard Fuchs 1 year ago
parent
commit
d00b29e110
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/call.c

+ 1
- 1
daemon/call.c View File

@ -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:


Loading…
Cancel
Save