File: 40_fix-ftbfs-with-gcc-14.patch

package info (click to toggle)
dsniff 2.4b1%2Bdebian-35
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,096 kB
  • sloc: ansic: 10,803; sh: 152; makefile: 127
file content (16 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Fix declaration of a variable
Forwarded: not-needed
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1074923
Author: Sven Geuer <sge@debian.org>
Last-Update: 2024-08-09
--- a/urlsnarf.c
+++ b/urlsnarf.c
@@ -341,7 +341,7 @@
 	}
 
 	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;