mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-07 21:25:12 +02:00
condition: fix intrapositional negation sign
This commit is contained in:

committed by
Jan Engelhardt

parent
e36c7575fc
commit
34f39756ec
@@ -1,6 +1,7 @@
|
|||||||
|
|
||||||
|
|
||||||
- condition: compile fix for 2.6.30-rc
|
- condition: compile fix for 2.6.30-rc
|
||||||
|
- condition: fix intrapositional negation sign
|
||||||
- fuzzy: fix bogus comparison logic leftover from move to new 1.4.3 API
|
- fuzzy: fix bogus comparison logic leftover from move to new 1.4.3 API
|
||||||
- ipp2p: fix bogus varargs call
|
- ipp2p: fix bogus varargs call
|
||||||
- ipp2p: fix typo in error message
|
- ipp2p: fix typo in error message
|
||||||
|
@@ -74,7 +74,7 @@ static void condition_save(const void *ip, const struct xt_entry_match *match)
|
|||||||
{
|
{
|
||||||
const struct xt_condition_mtinfo *info = (const void *)match->data;
|
const struct xt_condition_mtinfo *info = (const void *)match->data;
|
||||||
|
|
||||||
printf("--condition %s\"%s\" ", (info->invert) ? "! " : "", info->name);
|
printf("%s--condition \"%s\" ", info->invert ? "! " : "", info->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct xtables_match condition_mt_reg = {
|
static struct xtables_match condition_mt_reg = {
|
||||||
|
Reference in New Issue
Block a user