From d4a297ccb054019aa582bab2a0746f762c930159 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 26 Feb 2013 15:17:26 +0100 Subject: [PATCH] http: fix case in 505 response status line Fixes #4850. --- lib/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http.js b/lib/http.js index b6d68c635b1..e7299cc33be 100644 --- a/lib/http.js +++ b/lib/http.js @@ -251,7 +251,7 @@ var STATUS_CODES = exports.STATUS_CODES = { 502 : 'Bad Gateway', 503 : 'Service Unavailable', 504 : 'Gateway Time-out', - 505 : 'HTTP Version not supported', + 505 : 'HTTP Version Not Supported', 506 : 'Variant Also Negotiates', // RFC 2295 507 : 'Insufficient Storage', // RFC 4918 509 : 'Bandwidth Limit Exceeded',