From a2383825ed4f0b2367247dd128359981fcce23ab Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Wed, 29 Sep 2021 16:58:38 +0200 Subject: [PATCH] Replace Script with FastCGI app --- src/lib/fastcgi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/fastcgi.c b/src/lib/fastcgi.c index f064aca..848ad6d 100644 --- a/src/lib/fastcgi.c +++ b/src/lib/fastcgi.c @@ -331,7 +331,7 @@ int fastcgi_header(fastcgi_conn *conn, http_res *res, char *err_msg) { print(ERR_STR "FastCGI protocol error: %i" CLR_STR, body->protocolStatus); } if (app_status != 0) { - print(ERR_STR "Script terminated with exit code %i" CLR_STR, app_status); + print(ERR_STR "FastCGI app terminated with exit code %i" CLR_STR, app_status); } close(conn->socket); conn->socket = 0; @@ -457,7 +457,7 @@ int fastcgi_send(fastcgi_conn *conn, sock *client, int flags) { print(ERR_STR "FastCGI protocol error: %i" CLR_STR, body->protocolStatus); } if (app_status != 0) { - print(ERR_STR "Script terminated with exit code %i" CLR_STR, app_status); + print(ERR_STR "FastCGI app terminated with exit code %i" CLR_STR, app_status); } close(conn->socket); conn->socket = 0;