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;