Because of a cut/paste error, the wrong reason was returned for 302
code. The 301 reason was returned instead. Thus now, "Found" is returned for
302, instead of "Moved Permanently".
This pathc should fix the issue 2208. It must be backported to all stable
versions.
case 226: return "IM Used";
case 300: return "Multiple Choices";
case 301: return "Moved Permanently";
- case 302: return "Moved Temporarily";
+ case 302: return "Found";
case 303: return "See Other";
case 304: return "Not Modified";
case 305: return "Use Proxy";