projects
/
privoxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
385858b
)
client_host_adder(): Remove stray space
author
Fabian Keil
<fk@fabiankeil.de>
Tue, 9 Sep 2025 14:01:21 +0000
(16:01 +0200)
committer
Fabian Keil
<fk@fabiankeil.de>
Thu, 9 Oct 2025 09:51:07 +0000
(11:51 +0200)
parsers.c
patch
|
blob
|
history
diff --git
a/parsers.c
b/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++;
}