]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[NETFILTER]: Fix truncated sequence numbers in FTP helper
authorYasuyuki KOZAKAI <yasuyuki.kozkaai@toshiba.co.jp>
Mon, 25 Apr 2005 19:00:04 +0000 (12:00 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 25 Apr 2005 19:00:04 +0000 (12:00 -0700)
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>
net/ipv4/netfilter/ip_conntrack_ftp.c

index 12b88cbb11db60caf47bb7cff173f406ee646d7d..dd86503aa7881917715839aa81c62fcdeb3f6391 100644 (file)
@@ -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;