Date: Fri, 21 Jun 2002 06:20:03 -0700 (PDT) From: Eric Anderson <anderson@centtech.com> To: freebsd-qa@FreeBSD.org Subject: Re: i386/38371: sysinstall segmentation fault while fetching index via http proxy Message-ID: <200206211320.g5LDK3D72780@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR i386/38371; it has been noted by GNATS. From: Eric Anderson <anderson@centtech.com> To: freebsd-gnats-submit@freebsd.org, mark@zonnet.nl Cc: Subject: Re: i386/38371: sysinstall segmentation fault while fetching index via http proxy Date: Fri, 21 Jun 2002 08:17:42 -0500 This patch fixed the problem for me (change from a HEAD request to a GET request). *** http.c Fri Jun 21 08:03:05 2002 --- http.c-45 Sat Dec 1 07:04:43 2001 *************** *** 219,225 **** return NULL; } ! sprintf(req,"GET %s/%s%s HTTP/1.0\r\n\r\n", variable_get(VAR_HTTP_PATH), file, variable_get(VAR_HTTP_FTP_MODE)); if (isDebug()) { --- 219,225 ---- return NULL; } ! sprintf(req,"HEAD %s/%s%s HTTP/1.0\r\n\r\n", variable_get(VAR_HTTP_PATH), file, variable_get(VAR_HTTP_FTP_MODE)); if (isDebug()) { -- ------------------------------------------------------------------ Eric Anderson Systems Administrator Centaur Technology He who laughs last didn't get the joke. ------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-qa" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200206211320.g5LDK3D72780>