1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Bring back fix from rev. 1.28 which was lost during the import.

This commit is contained in:
Max Laier 2005-05-04 16:03:01 +00:00
parent 8398e1894d
commit 69d9333494
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=145875

View File

@ -4364,9 +4364,9 @@ pf_test_state_tcp(struct pf_state **state, int direction, struct pfi_kif *kif,
(*state)->dst.seqdiff = (*state)->src.seqhi -
(*state)->dst.seqlo;
(*state)->src.seqhi = (*state)->src.seqlo +
(*state)->src.max_win;
(*state)->dst.seqhi = (*state)->dst.seqlo +
(*state)->dst.max_win;
(*state)->dst.seqhi = (*state)->dst.seqlo +
(*state)->src.max_win;
(*state)->src.wscale = (*state)->dst.wscale = 0;
(*state)->src.state = (*state)->dst.state =
TCPS_ESTABLISHED;