summaryrefslogtreecommitdiffstats
path: root/ebtables.c
diff options
context:
space:
mode:
Diffstat (limited to 'ebtables.c')
-rw-r--r--ebtables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ebtables.c b/ebtables.c
index b2a1262..6bfbb8f 100644
--- a/ebtables.c
+++ b/ebtables.c
@@ -635,13 +635,13 @@ enddst:
printf("--logical-out ");
if (hlp->invflags & EBT_ILOGICALOUT)
printf("! ");
- printf("%s, ", hlp->logical_out);
+ printf("%s ", hlp->logical_out);
}
if (hlp->out[0] != '\0') {
printf("-o ");
if (hlp->invflags & EBT_IOUT)
printf("! ");
- printf("%s, ", hlp->out);
+ printf("%s ", hlp->out);
}
m_l = hlp->m_list;