From 50d14a33c0e6a329b7ccb7a379b33ca08b5ad598 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Fri, 10 Apr 2009 19:42:59 +0200 Subject: [PATCH] ipp2p: fix typo in error message Reference: http://bugs.gentoo.org/show_bug.cgi?id=250407 Reported-by: Mike --- doc/changelog.txt | 1 + extensions/libxt_ipp2p.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/changelog.txt b/doc/changelog.txt index afa1644..34d37ed 100644 --- a/doc/changelog.txt +++ b/doc/changelog.txt @@ -2,6 +2,7 @@ - fuzzy: fix bogus comparison logic leftover from move to new 1.4.3 API - ipp2p: fix bogus varargs call +- ipp2p: fix typo in error message Xtables-addons 1.14 (March 31 2009) diff --git a/extensions/libxt_ipp2p.c b/extensions/libxt_ipp2p.c index 610cdba..21beee4 100644 --- a/extensions/libxt_ipp2p.c +++ b/extensions/libxt_ipp2p.c @@ -103,8 +103,8 @@ static int ipp2p_mt_parse(int c, char **argv, int invert, unsigned int *flags, break; case 'b': /*cmd: bit*/ - param_act(XTF_ONLY_ONCE, "--kazaa", *flags & IPP2P_BIT); - param_act(XTF_NO_INVERT, "--kazaa", invert); + param_act(XTF_ONLY_ONCE, "--bit", *flags & IPP2P_BIT); + param_act(XTF_NO_INVERT, "--bit", invert); *flags |= IPP2P_BIT; info->cmd |= IPP2P_BIT; break;