From c71a5706d2bf9e18983a0ca51905e495d445e916 Mon Sep 17 00:00:00 2001 From: Tester23 <85486843+openshwprojects@users.noreply.github.com> Date: Sat, 11 Jan 2025 18:18:27 +0100 Subject: [PATCH] Update new_http.c --- src/httpserver/new_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httpserver/new_http.c b/src/httpserver/new_http.c index 49b6f2b46..ec294c04a 100644 --- a/src/httpserver/new_http.c +++ b/src/httpserver/new_http.c @@ -156,7 +156,7 @@ void poststr_escaped(http_request_t* request, char* str) { bool foundChar = false; int len = strlen(str); - //Do a quick check if escaping is necessary + // Do a quick check if escaping is necessary for (i = 0; (foundChar == false) && (i < len); i++) { switch (str[i]) { case '<':