From eb4f96c10afcf8806cbbff3087aa0850e3fc9905 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Sun, 27 Nov 2022 10:06:08 +0000 Subject: [PATCH] typo --- server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.c b/server.c index 50b443f..ae2ba79 100644 --- a/server.c +++ b/server.c @@ -722,7 +722,7 @@ apply_fastcgi(struct client *c) log_debug(c, "opening fastcgi connection for (%s,%s)", f->path, f->port); - if (*f->port != '\0') + if (*f->port == '\0') c->pfd = fcgi_open_sock(f); else c->pfd = fcgi_open_conn(f);