condition: fix intrapositional negation sign

This commit is contained in:
Roman Hoog Antink
2009-04-17 15:35:02 +02:00
committed by Jan Engelhardt
parent e36c7575fc
commit 34f39756ec
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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 = {