From b9072cca3d51d8df4076e1968c12bf556fe3bf70 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Tue, 23 Sep 2025 18:03:58 +0200 Subject: [PATCH] net-analyzer/dsniff: remove unused patch Signed-off-by: Michael Mair-Keimberger --- .../dsniff-2.4_beta1_p31-c99-fixes.patch | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 net-analyzer/dsniff/files/dsniff-2.4_beta1_p31-c99-fixes.patch diff --git a/net-analyzer/dsniff/files/dsniff-2.4_beta1_p31-c99-fixes.patch b/net-analyzer/dsniff/files/dsniff-2.4_beta1_p31-c99-fixes.patch deleted file mode 100644 index f77d21ea95102..0000000000000 --- a/net-analyzer/dsniff/files/dsniff-2.4_beta1_p31-c99-fixes.patch +++ /dev/null @@ -1,36 +0,0 @@ -# Gentoo bug: https://bugs.gentoo.org/919503 - -diff --git a/tcpkill.c b/tcpkill.c -index 1a64d40..de7ad00 100644 ---- a/tcpkill.c -+++ b/tcpkill.c -@@ -19,6 +19,7 @@ - #include - #include - #include -+#include - - #include "pcaputil.h" - #include "version.h" -@@ -84,7 +85,7 @@ tcp_kill_cb(u_char *user, const struct pcap_pkthdr *pcap, const u_char *pkt) - if (libnet_write(l) < 0) - warn("write"); - -- fprintf(stderr, "%s R %lu:%lu(0) win 0\n", ctext, seq, seq); -+ fprintf(stderr, "%s R %"PRIu32":%"PRIu32"(0) win 0\n", ctext, seq, seq); - } - } - -diff --git a/urlsnarf.c b/urlsnarf.c -index f46ccf8..d57b9dd 100644 ---- a/urlsnarf.c -+++ b/urlsnarf.c -@@ -341,7 +341,7 @@ main(int argc, char *argv[]) - } - - struct pcap_pkthdr *h; -- u_char *d; -+ const u_char *d; - int rc; - while ((rc = pcap_next_ex(p, &h, &d)) == 1) { - tt = h->ts.tv_sec;