From 95d78480997c8567a30927ca0dad0b759feda8ff Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Tue, 9 Sep 2025 16:01:21 +0200 Subject: [PATCH] client_host_adder(): Remove stray space --- parsers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsers.c b/parsers.c index 099a327c..80297813 100644 --- a/parsers.c +++ b/parsers.c @@ -4060,7 +4060,7 @@ static jb_err client_host_adder(struct client_state *csp) /* * remove 'user:pass@' from 'proto://user:pass@host' */ - if ((p = strchr( csp->http->hostport, '@')) != NULL) + if ((p = strchr(csp->http->hostport, '@')) != NULL) { p++; } -- 2.50.1