summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-07-07 14:26:15 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-07-07 14:26:15 +0000
commitb3d8f2648599bae4779ca007122d2cd091067d12 (patch)
tree739bd238c323127c3cbc7d39c097decf9e6f9dc4
parent4e0ea9265a1f31244936b4ef06253a302a261ce4 (diff)
*** empty log message ***
-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;