diff options
author | Michael Tuexen <tuexen@FreeBSD.org> | 2018-05-02 20:04:31 +0000 |
---|---|---|
committer | Michael Tuexen <tuexen@FreeBSD.org> | 2018-05-02 20:04:31 +0000 |
commit | 4c6a10903fcbe29ab6472d365177ad43e9688c77 (patch) | |
tree | ebb0754eadb25699ad84b8719b668c316db43a3c /sys/netinet/tcp_timer.c | |
parent | 5ebc699ab26633a23c4c6d2b85aba67457df996a (diff) |
Notes
Diffstat (limited to 'sys/netinet/tcp_timer.c')
-rw-r--r-- | sys/netinet/tcp_timer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/tcp_timer.c b/sys/netinet/tcp_timer.c index 6f07f0314bfe..012d4e98994c 100644 --- a/sys/netinet/tcp_timer.c +++ b/sys/netinet/tcp_timer.c @@ -662,8 +662,7 @@ tcp_timer_rexmt(void * xtp) tcp_inpinfo_lock_del(inp, tp); goto out; } - tp = tcp_drop(tp, tp->t_softerror ? - tp->t_softerror : ETIMEDOUT); + tp = tcp_drop(tp, ETIMEDOUT); tcp_inpinfo_lock_del(inp, tp); goto out; } |