openbsd-ports/net/luasocket/patches/patch-src_http_lua

13 lines
626 B
Plaintext
Raw Normal View History

$OpenBSD: patch-src_http_lua,v 1.1 2008/11/04 04:06:45 jsg Exp $
--- src/http.lua.orig Mon Nov 3 23:17:12 2008
+++ src/http.lua Mon Nov 3 23:17:57 2008
@@ -242,7 +242,7 @@ local function shouldredirect(reqt, code, headers)
return headers.location and
string.gsub(headers.location, "%s", "") ~= "" and
(reqt.redirect ~= false) and
- (code == 301 or code == 302) and
+ (code == 301 or code == 302 or code == 303 or code == 307) and
(not reqt.method or reqt.method == "GET" or reqt.method == "HEAD")
and (not reqt.nredirects or reqt.nredirects < 5)
end