summaryrefslogtreecommitdiffstats
path: root/userspace/patches/incremental-patches/ebtables-v2.0pre9.001.diff
blob: 6a51a84f8fce27b3a5ebb213eba2532d2fb109c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;