X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/c6bf4f310a33a9262d455ea4d3f0630b1255e3fe..ea3f04195ba4a5034c9c8e9b726d4f7ce96f1832:/bsd/netinet/tcp_timer.c diff --git a/bsd/netinet/tcp_timer.c b/bsd/netinet/tcp_timer.c index c19dc1706..df9551689 100644 --- a/bsd/netinet/tcp_timer.c +++ b/bsd/netinet/tcp_timer.c @@ -143,7 +143,7 @@ sysctl_msec_to_ticks SYSCTL_HANDLER_ARGS return error; } - tt = s * TCP_RETRANSHZ / 1000; + tt = temp * TCP_RETRANSHZ / 1000; if (tt < 1 || tt > INT_MAX) { return EINVAL; }