From 75d36bb5bb63bc65bb467082e68caaa147b3dda3 Mon Sep 17 00:00:00 2001
From: Lorenz Stechauner <lorenz.stechauner@necronda.net>
Date: Wed, 7 Feb 2024 15:34:21 +0100
Subject: [PATCH] Use correct color string

---
 src/worker/fastcgi_handler.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/worker/fastcgi_handler.c b/src/worker/fastcgi_handler.c
index f3e3079..be273b5 100644
--- a/src/worker/fastcgi_handler.c
+++ b/src/worker/fastcgi_handler.c
@@ -90,14 +90,14 @@ static int fastcgi_handler_1(client_ctx_t *ctx, fastcgi_cnx_t **fcgi_cnx) {
     const char *client_transfer_encoding = http_get_header_field(&req->hdr, "Transfer-Encoding");
     if (client_content_length != NULL) {
         if (expect_100_continue) {
-            info(HTTP_COLOR_SUCCESS "100 Continue" CLR_STR);
+            info(HTTP_1XX_STR "100 Continue" CLR_STR);
             http_send_100_continue(client);
         }
         unsigned long client_content_len = strtoul(client_content_length, NULL, 10);
         ret = fastcgi_receive(*fcgi_cnx, client, client_content_len);
     } else if (strcontains(client_transfer_encoding, "chunked")) {
         if (expect_100_continue) {
-            info(HTTP_COLOR_SUCCESS "100 Continue" CLR_STR);
+            info(HTTP_1XX_STR "100 Continue" CLR_STR);
             http_send_100_continue(client);
         }
         ret = fastcgi_receive_chunked(*fcgi_cnx, client);