client_host_adder(): Remove stray space
authorFabian Keil <fk@fabiankeil.de>
Tue, 9 Sep 2025 14:01:21 +0000 (16:01 +0200)
committerFabian Keil <fk@fabiankeil.de>
Thu, 9 Oct 2025 09:51:07 +0000 (11:51 +0200)
parsers.c

index 099a327..8029781 100644 (file)
--- 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++;
    }