diff options
author | Omar Polo <op@omarpolo.com> | 2024-06-10 10:25:54 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-06-10 10:25:54 +0000 |
commit | d4955d289157e9a721ab5bd1577ed81da8a39a68 (patch) | |
tree | de1a479b7d659c0b9835f711d09ec574d6a45003 /server.c | |
parent | 22ce7eb4557cf6a9ed3551531908880bd83f3001 (diff) |
fmt
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -614,8 +614,7 @@ apply_reverse_proxy(struct client *c) if (p->reqca != NULL && check_matching_certificate(p->reqca, c)) return 1; - log_debug("opening proxy connection for %s:%s", - p->host, p->port); + log_debug("opening proxy connection for %s:%s", p->host, p->port); if ((c->pfd = proxy_socket(c, p->host, p->port)) == -1) { start_reply(c, PROXY_ERROR, "proxy error"); @@ -719,8 +718,7 @@ apply_fastcgi(struct client *c) return 0; } - log_debug("opening fastcgi connection for (%s,%s)", - f->path, f->port); + log_debug("opening fastcgi connection for (%s,%s)", f->path, f->port); if (*f->port == '\0') c->pfd = fcgi_open_sock(f); |