From 884e84920a5441279fea2c1fda95ffb24c8b5f75 Mon Sep 17 00:00:00 2001 From: Samuel Gil Date: Tue, 8 Mar 2016 16:12:15 +0100 Subject: [PATCH] 414 status code message corrected According to the RFC7231, section 6.5.12, the message should be "Request-URI Too Long" --- src/daemon/reason_phrase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/reason_phrase.c b/src/daemon/reason_phrase.c index 443e180..59bd93a 100644 --- a/src/daemon/reason_phrase.c +++ b/src/daemon/reason_phrase.c @@ -76,7 +76,7 @@ static const char *four_hundred[] = { "Length Required", "Precondition Failed", "Request Entity Too Large", - "Request-URI Too Large", + "Request-URI Too Long", "Unsupported Media Type", "Requested Range Not Satisfiable", "Expectation Failed",