summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/wireshark/files/wireshark-1.0.5-text2pcap-protos.patch')
-rw-r--r--net-analyzer/wireshark/files/wireshark-1.0.5-text2pcap-protos.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/net-analyzer/wireshark/files/wireshark-1.0.5-text2pcap-protos.patch b/net-analyzer/wireshark/files/wireshark-1.0.5-text2pcap-protos.patch
deleted file mode 100644
index eed2df16a70b..000000000000
--- a/net-analyzer/wireshark/files/wireshark-1.0.5-text2pcap-protos.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-defining _XOPEN_SOURCE to nothing means the oldest version which means glibc
-will not provide the strdup() prototype. this leads to an implicit decl which
-leads to a return type of "int" -- 32bits of a ptr on a 64bit arch leads to
-kaboom.
-
-https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3161
-
---- text2pcap.c
-+++ text2pcap.c
-@@ -90,7 +90,7 @@
- # define __USE_XOPEN
- #endif
- #ifndef _XOPEN_SOURCE
--# define _XOPEN_SOURCE
-+# define _XOPEN_SOURCE 600
- #endif
-
- #include <ctype.h>