opnsense-ports/www/webcrawl/files/patch-http.c
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

12 lines
434 B
C

--- http.c Fri Apr 30 12:04:19 1999
+++ http.c.new Tue Nov 6 13:28:06 2001
@@ -106,8 +106,7 @@
alarm(options.timeout);
}
- strcpy (szRequest, "GET /"); strcat (szRequest, pszFile);
- strcat (szRequest, " HTTP/1.0\n");
+ snprintf (szRequest, 512, "GET http://%s/%s HTTP/1.0\n", pszHost, pszFile);
strcat (szRequest, "User-Agent: ");
strcat (szRequest, options.userAgent);
strcat (szRequest, "\n\n");