formatting

This commit is contained in:
Adam D. Ruppe 2021-09-10 11:08:45 -04:00
parent 0571c5d7b1
commit c959c3c0ab
1 changed files with 31 additions and 32 deletions

5
cgi.d
View File

@ -10421,19 +10421,18 @@ private static string getHttpCodeText(int code) pure nothrow @nogc {
case 203: return "203 Non-Authoritative Information";
case 204: return "204 No Content";
case 205: return "205 Reset Content";
case 206 : return "206 Partial Content";
case 206: return "206 Partial Content";
//
case 300: return "300 Multiple Choices";
case 301: return "301 Moved Permanently";
case 302: return "302 Found";
case 303: return "303 See Other";
case 304: return "304 Not Modified";
case 305 : return "305 Use Proxy";
case 305: return "305 Use Proxy";
case 307: return "307 Temporary Redirect";
case 308: return "308 Permanent Redirect";
//
// FIXME: add more common 400 ones cgi.d might return too
case 400: return "400 Bad Request";
case 401: return "401 Unauthorized";
case 402: return "402 Payment Required";