From 97b04173ee0e579029ec0669d4678ac2d759dc35 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Sun, 13 Dec 2020 21:00:18 +0100 Subject: [PATCH] Fixed typo in src/http.h --- src/http.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http.h b/src/http.h index 3969a0e..7031933 100644 --- a/src/http.h +++ b/src/http.h @@ -107,7 +107,7 @@ http_error_msg http_error_messages[] = { {501, "The server does not support the functionality required to fulfill the request."}, {502, "The server, while acting as a gateway or proxy, received an invalid response from the upstream server it accessed in attempting to fulfill the request."}, {503, "The server is currently unable to handle the request due to a temporary overloading or maintenance of the server."}, - {504, "he server, while acting as a gateway or proxy, did not receive a timely response from the upstream server specified by the URI or some other auxiliary server it needed to access in attempting to complete the request."}, + {504, "The server, while acting as a gateway or proxy, did not receive a timely response from the upstream server specified by the URI or some other auxiliary server it needed to access in attempting to complete the request."}, {505, "The server does not support, or refuses to support, the HTTP protocol version that was used in the request message."} };