svn commit: r242034 - stable/8/lib/libfetch

Eitan Adler eadler at FreeBSD.org
Thu Oct 25 03:11:19 UTC 2012


Author: eadler
Date: Thu Oct 25 03:11:18 2012
New Revision: 242034
URL: http://svn.freebsd.org/changeset/base/242034

Log:
  MFC r241839:
  	Be a bit more lenient in the maximum number of redirects allowed.
  	Chrome and Firefox have a limit of 20. IE has a limit of 8.
  
  Approved by:	cperciva (implicit)

Modified:
  stable/8/lib/libfetch/http.c
Directory Properties:
  stable/8/lib/libfetch/   (props changed)

Modified: stable/8/lib/libfetch/http.c
==============================================================================
--- stable/8/lib/libfetch/http.c	Thu Oct 25 03:11:18 2012	(r242033)
+++ stable/8/lib/libfetch/http.c	Thu Oct 25 03:11:18 2012	(r242034)
@@ -86,7 +86,7 @@ __FBSDID("$FreeBSD$");
 #include "httperr.h"
 
 /* Maximum number of redirects to follow */
-#define MAX_REDIRECT 5
+#define MAX_REDIRECT 20
 
 /* Symbolic names for reply codes we care about */
 #define HTTP_OK			200


More information about the svn-src-all mailing list