From 7f58ba9f11f131f165bd29575f93a50d9dc26c06 Mon Sep 17 00:00:00 2001 From: Wolfgang Draxinger Date: Mon, 9 Sep 2013 16:51:02 +0200 Subject: new HTTP status code string (422) --- picohttp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/picohttp.c b/picohttp.c index be22587..58973bc 100644 --- a/picohttp.c +++ b/picohttp.c @@ -110,6 +110,8 @@ static char const *picohttpStatusString(int code) return "Not Found"; case 414: return "Request URI Too Long"; + case 422: + return "Unprocessable Entity"; case 500: return "Internal Server Error"; case 501: -- cgit v1.2.3