From eba916fad4e50eb232602dacb2bb79d20cfadb9f Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Fri, 17 Sep 2021 18:21:34 +0200 Subject: [PATCH] Fixed Error string in rev_proxy.c --- src/lib/rev_proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/rev_proxy.c b/src/lib/rev_proxy.c index b629dcd..acd4f36 100644 --- a/src/lib/rev_proxy.c +++ b/src/lib/rev_proxy.c @@ -223,7 +223,7 @@ int rev_proxy_init(http_req *req, http_res *res, host_config *conf, sock *client } else { res->status = http_get_status(500); } - print(ERR_STR "Unable to connect to [%s]%i: %s" CLR_STR, buffer, conf->rev_proxy.port, strerror(errno)); + print(ERR_STR "Unable to connect to [%s]:%i: %s" CLR_STR, buffer, conf->rev_proxy.port, strerror(errno)); sprintf(err_msg, "Unable to connect to server: %s.", strerror(errno)); goto proxy_err; }