diff options
Diffstat (limited to 'www/webcrawl/files/patch-http.c')
-rw-r--r-- | www/webcrawl/files/patch-http.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www/webcrawl/files/patch-http.c b/www/webcrawl/files/patch-http.c new file mode 100644 index 000000000000..bc988f9957df --- /dev/null +++ b/www/webcrawl/files/patch-http.c @@ -0,0 +1,12 @@ +--- 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"); |