Fix FastCGI segfault error

This commit is contained in:
2023-07-01 20:21:21 +02:00
parent bd8e71e83d
commit 31cd2e7e73
2 changed files with 13 additions and 13 deletions

View File

@ -95,7 +95,7 @@ int fastcgi_init(fastcgi_cnx_t *conn, int mode, unsigned int req_num, const sock
}
if (connect(conn->socket.socket, (struct sockaddr *) &sock_addr, sizeof(sock_addr)) != 0) {
error("Unable to connect to unix socket of FastCGI socket");
error("Unable to connect to FastCGI (unix) socket");
return -1;
}