summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-02-26 15:17:26 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2013-02-26 15:18:40 +0100
commitd4a297ccb054019aa582bab2a0746f762c930159 (patch)
tree986a6d740c52f32434c4f8abe0beb73cdf4761dc
parentaa985392777dbe6159ce4ca56ae79d1039e43ec7 (diff)
downloadnode-d4a297ccb054019aa582bab2a0746f762c930159.tar.gz
http: fix case in 505 response status line
Fixes #4850.
-rw-r--r--lib/http.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.js b/lib/http.js
index b6d68c635..e7299cc33 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',