svn commit: r361214 - head/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Mon May 18 15:02:16 UTC 2020
Author: tuexen
Date: Mon May 18 15:02:15 2020
New Revision: 361214
URL: https://svnweb.freebsd.org/changeset/base/361214
Log:
Fix logical condition by looking at usecs.
This issue was found by cpp-check running on the userland stack.
MFC after: 3 days
Modified:
head/sys/netinet/sctputil.c
Modified: head/sys/netinet/sctputil.c
==============================================================================
--- head/sys/netinet/sctputil.c Mon May 18 15:00:18 2020 (r361213)
+++ head/sys/netinet/sctputil.c Mon May 18 15:02:15 2020 (r361214)
@@ -2933,7 +2933,7 @@ sctp_calculate_rto(struct sctp_tcb *stcb,
(void)SCTP_GETTIME_TIMEVAL(&now);
}
if ((old->tv_sec > now.tv_sec) ||
- ((old->tv_sec == now.tv_sec) && (old->tv_sec > now.tv_sec))) {
+ ((old->tv_sec == now.tv_sec) && (old->tv_usec > now.tv_usec))) {
/* The starting point is in the future. */
return (0);
}
More information about the svn-src-all
mailing list