Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 250407 | Differences between
and this patch

Collapse All | Expand All

(-)xtables-addons-1.14/extensions/libxt_ipp2p.c.orig (-3 / +3 lines)
Lines 17-23 Link Here
17
#include <ctype.h>
17
#include <ctype.h>
18
#include <xtables.h>
18
#include <xtables.h>
19
#include "xt_ipp2p.h"
19
#include "xt_ipp2p.h"
20
#define param_act(t, s, f) param_act((t), "ipp2p", (s), (f))
20
#define xtables_param_act(t, s, f) xtables_param_act((t), "ipp2p", (s), (f))
21
21
22
static void ipp2p_mt_help(void)
22
static void ipp2p_mt_help(void)
23
{
23
{
Lines 103-110 static int ipp2p_mt_parse(int c, char ** Link Here
103
		break;
103
		break;
104
104
105
	case 'b':		/*cmd: bit*/
105
	case 'b':		/*cmd: bit*/
106
		xtables_param_act(XTF_ONLY_ONCE, "--kazaa", *flags & IPP2P_BIT);
106
		xtables_param_act(XTF_ONLY_ONCE, "--bit", *flags & IPP2P_BIT);
107
		xtables_param_act(XTF_NO_INVERT, "--kazaa", invert);
107
		xtables_param_act(XTF_NO_INVERT, "--bit", invert);
108
		*flags    |= IPP2P_BIT;
108
		*flags    |= IPP2P_BIT;
109
		info->cmd |= IPP2P_BIT;
109
		info->cmd |= IPP2P_BIT;
110
		break;
110
		break;

Return to bug 250407