summaryrefslogtreecommitdiff
path: root/net/tcpdstat/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/tcpdstat/files')
-rw-r--r--net/tcpdstat/files/patch-Makefile11
-rw-r--r--net/tcpdstat/files/patch-net_read.c11
2 files changed, 0 insertions, 22 deletions
diff --git a/net/tcpdstat/files/patch-Makefile b/net/tcpdstat/files/patch-Makefile
deleted file mode 100644
index 21f05ffd6702..000000000000
--- a/net/tcpdstat/files/patch-Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.orig 2014-06-24 12:55:40.174706872 +0800
-+++ Makefile 2014-06-24 12:55:48.621709202 +0800
-@@ -11,7 +11,7 @@ INCLUDES= -I. $(SYS_INCLUDES)
- all: $(PROGS)
-
- install: $(PROGS)
-- $(INSTALL) $(COPY) -m 0755 $(PROGS) $(PREFIX)/bin
-+ $(INSTALL) $(COPY) -m 0755 $(PROGS) $(DESTDIR)$(PREFIX)/bin
-
- tcpdstat: $(OBJS)
- $(CC) $(CFLAGS) $(INCLUDES) $(DEFINES) -o $@ $(OBJS) -lpcap -lm $(SYS_LIBS)
diff --git a/net/tcpdstat/files/patch-net_read.c b/net/tcpdstat/files/patch-net_read.c
deleted file mode 100644
index ac1a2a67f34c..000000000000
--- a/net/tcpdstat/files/patch-net_read.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- net_read.orig Wed Dec 13 23:11:59 2006
-+++ net_read.c Wed Dec 13 23:12:17 2006
-@@ -137,7 +137,7 @@
- pcap_t *pd;
- int pcapfd;
-
--static int packet_length; /* length of current packet */
-+int packet_length; /* length of current packet */
-
- #define STAT_ADD(name) \
- { tcpdstat[(name)].packets++; tcpdstat[(name)].bytes += packet_length; }