From: <li...@us...> - 2003-12-19 16:29:24
|
Update of /cvsroot/iptables-p2p/iptables-p2p/iptables In directory sc8-pr-cvs1:/tmp/cvs-serv16288 Modified Files: libipt_p2p.c Log Message: arg parsing typo Index: libipt_p2p.c =================================================================== RCS file: /cvsroot/iptables-p2p/iptables-p2p/iptables/libipt_p2p.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- libipt_p2p.c 15 Dec 2003 11:04:07 -0000 1.5 +++ libipt_p2p.c 19 Dec 2003 16:29:21 -0000 1.6 @@ -183,9 +183,9 @@ /* Handle a single parameter */ if (invert) - protoret &= ~(arg_to_proto(arg)); + protoret &= ~(arg_to_proto(buf)); else - protoret |= arg_to_proto(arg); + protoret |= arg_to_proto(buf); arg += protolen; |