diff options
author | Yasuyuki KOZAKAI <yasuyuki.kozkaai@toshiba.co.jp> | 2005-04-25 12:00:04 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-04-25 12:00:04 -0700 |
commit | f649a3bfd1b0ad8872312ed1c223d69b74406e1f (patch) | |
tree | 1ce19f6f84280f6c3f4709d618cd855443b5a1a4 | |
parent | 25ee7e3832951cf5896b194f6cd929a44863f419 (diff) | |
download | linux-3.10-f649a3bfd1b0ad8872312ed1c223d69b74406e1f.tar.gz linux-3.10-f649a3bfd1b0ad8872312ed1c223d69b74406e1f.tar.bz2 linux-3.10-f649a3bfd1b0ad8872312ed1c223d69b74406e1f.zip |
[NETFILTER]: Fix truncated sequence numbers in FTP helper
Signed-off-by: Yasuyuki KOZAKAI <yasuyuki.kozkaai@toshiba.co.jp>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv4/netfilter/ip_conntrack_ftp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/netfilter/ip_conntrack_ftp.c b/net/ipv4/netfilter/ip_conntrack_ftp.c index 12b88cbb11d..dd86503aa78 100644 --- a/net/ipv4/netfilter/ip_conntrack_ftp.c +++ b/net/ipv4/netfilter/ip_conntrack_ftp.c @@ -252,7 +252,7 @@ static int find_pattern(const char *data, size_t dlen, } /* Look up to see if we're just after a \n. */ -static int find_nl_seq(u16 seq, const struct ip_ct_ftp_master *info, int dir) +static int find_nl_seq(u32 seq, const struct ip_ct_ftp_master *info, int dir) { unsigned int i; @@ -263,7 +263,7 @@ static int find_nl_seq(u16 seq, const struct ip_ct_ftp_master *info, int dir) } /* We don't update if it's older than what we have. */ -static void update_nl_seq(u16 nl_seq, struct ip_ct_ftp_master *info, int dir) +static void update_nl_seq(u32 nl_seq, struct ip_ct_ftp_master *info, int dir) { unsigned int i, oldest = NUM_SEQ_TO_REMEMBER; |