From: Filipe A. <li...@us...> - 2004-03-19 17:43:34
|
Update of /cvsroot/iptables-p2p/iptables-p2p/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20121 Modified Files: match_bittorrent.c match_dc.c Log Message: Fix for older gcc versions Index: match_bittorrent.c =================================================================== RCS file: /cvsroot/iptables-p2p/iptables-p2p/kernel/match_bittorrent.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- match_bittorrent.c 8 Feb 2004 17:20:51 -0000 1.3 +++ match_bittorrent.c 19 Mar 2004 17:33:45 -0000 1.4 @@ -16,6 +16,7 @@ #include <linux/config.h> #include <linux/module.h> +#include <linux/string.h> #define SIZE_MIN (20) Index: match_dc.c =================================================================== RCS file: /cvsroot/iptables-p2p/iptables-p2p/kernel/match_dc.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- match_dc.c 8 Feb 2004 17:20:51 -0000 1.4 +++ match_dc.c 19 Mar 2004 17:33:45 -0000 1.5 @@ -16,6 +16,7 @@ #include <linux/config.h> #include <linux/module.h> +#include <linux/string.h> #include <linux/netfilter_ipv4/ip_tables.h> |