summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2008-08-13 14:40:18 +0200
committerPatrick McHardy <kaber@trash.net>2008-08-13 14:40:18 +0200
commitd38eaf488dcd9c78d1ea7c1b9613d210688114af (patch)
treea2871c59ddf436f2cf1d6d06bdd1db2ab91d9a19 /extensions
parentaeafdb8126d6ee658ff2b55dea380a84d1d77a25 (diff)
physdev: remove extra space in output
Just a cosmetic fix for `iptables -S` and `iptables-save` printing two spaces between arguments in the physdev match. Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/libxt_physdev.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/extensions/libxt_physdev.c b/extensions/libxt_physdev.c
index 34547c8e..0a937eac 100644
--- a/extensions/libxt_physdev.c
+++ b/extensions/libxt_physdev.c
@@ -143,22 +143,23 @@ static void physdev_save(const void *ip, const struct xt_entry_match *match)
(struct xt_physdev_info*)match->data;
if (info->bitmask & XT_PHYSDEV_OP_ISIN)
- printf("%s --physdev-is-in",
- info->invert & XT_PHYSDEV_OP_ISIN ? " !":"");
+ printf("%s--physdev-is-in ",
+ (info->invert & XT_PHYSDEV_OP_ISIN) ? "! " : "");
if (info->bitmask & XT_PHYSDEV_OP_IN)
- printf("%s --physdev-in %s",
- (info->invert & XT_PHYSDEV_OP_IN) ? " !":"", info->physindev);
+ printf("%s--physdev-in %s ",
+ (info->invert & XT_PHYSDEV_OP_IN) ? "! " : "",
+ info->physindev);
if (info->bitmask & XT_PHYSDEV_OP_ISOUT)
- printf("%s --physdev-is-out",
- info->invert & XT_PHYSDEV_OP_ISOUT ? " !":"");
+ printf("%s--physdev-is-out ",
+ (info->invert & XT_PHYSDEV_OP_ISOUT) ? "! " : "");
if (info->bitmask & XT_PHYSDEV_OP_OUT)
- printf("%s --physdev-out %s",
- (info->invert & XT_PHYSDEV_OP_OUT) ? " !":"", info->physoutdev);
+ printf("%s--physdev-out %s ",
+ (info->invert & XT_PHYSDEV_OP_OUT) ? "! " : "",
+ info->physoutdev);
if (info->bitmask & XT_PHYSDEV_OP_BRIDGED)
- printf("%s --physdev-is-bridged",
- info->invert & XT_PHYSDEV_OP_BRIDGED ? " !":"");
- printf(" ");
+ printf("%s--physdev-is-bridged ",
+ (info->invert & XT_PHYSDEV_OP_BRIDGED) ? "! " : "");
}
static struct xtables_match physdev_match = {