summaryrefslogtreecommitdiffstats
path: root/userspace
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
commitfabba399341d1a8ce5f6efc0bc5dce329de65030 (patch)
tree9fb431365fd692de0526e74b30402165727c901a /userspace
parent02337b53dbd41d7094d74696ce129fb9ffce50b1 (diff)
*** empty log message ***
Diffstat (limited to 'userspace')
-rw-r--r--userspace/ebtables2/ebtables.c4
-rw-r--r--userspace/patches/incremental-patches/ebtables-v2.0pre9.001.diff38
2 files changed, 40 insertions, 2 deletions
diff --git a/userspace/ebtables2/ebtables.c b/userspace/ebtables2/ebtables.c
index b2a1262..6bfbb8f 100644
--- a/userspace/ebtables2/ebtables.c
+++ b/userspace/ebtables2/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;
diff --git a/userspace/patches/incremental-patches/ebtables-v2.0pre9.001.diff b/userspace/patches/incremental-patches/ebtables-v2.0pre9.001.diff
new file mode 100644
index 0000000..6a51a84
--- /dev/null
+++ b/userspace/patches/incremental-patches/ebtables-v2.0pre9.001.diff
@@ -0,0 +1,38 @@
+--- ebtables-v2.0pre8/Makefile Thu Jun 27 18:53:55 2002
++++ ebtables-v2.0pre9.001/Makefile Sun Jul 7 16:29:50 2002
+@@ -2,7 +2,7 @@
+
+ KERNEL_DIR?=/usr/src/linux
+ PROGNAME:=ebtables
+-PROGVERSION:="2.0pre8 (June 2002)"
++PROGVERSION:="2.0pre9 (July 2002)"
+
+ MANDIR?=/usr/local/man
+ CFLAGS:=-Wall -Wunused
+@@ -26,6 +26,8 @@
+ /usr/include/linux/br_db.h
+ cp -f $(KERNEL_DIR)/include/linux/netfilter_bridge.h \
+ /usr/include/linux/netfilter_bridge.h
++ cp -f $(KERNEL_DIR)/include/linux/if_ether.h \
++ /usr/include/linux/if_ether.h
+
+ .PHONY: symlink
+ symlink:
+--- ebtables-v2.0pre8/ebtables.c Thu Jun 27 18:53:55 2002
++++ ebtables-v2.0pre9.001/ebtables.c Sat Jun 29 11:41:57 2002
+@@ -635,13 +635,13 @@
+ 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;