commit 3844bbf04f9b417ee9fc97f6f43db259a063a1da
parent c12a7e38adbce6058ee7d9d4113cce2649c87977
Author: default <nobody@localhost>
Date: Mon, 17 Feb 2025 07:53:06 +0100
Add fake HTTP status error 399 to http_status_text().
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/snac.c b/snac.c
@@ -181,6 +181,7 @@ const char *http_status_text(int status)
/* translate status codes to canonical status texts */
{
switch (status) {
+ case 399: return "Timeout";
#define HTTP_STATUS(code, name, text) case HTTP_STATUS_ ## name: return #text;
#include "http_codes.h"
#undef HTTP_STATUS