diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-23 10:27:47 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-23 10:27:47 +0000 |
commit | 47fabea64f0595e160562ede024ef9c5378a4df4 (patch) | |
tree | 330e042fb79b3ea48833413b02f1c23be581b1db /usr.sbin | |
parent | cf18530a5c3a05c9bed52c10655665d67b0f97c6 (diff) |
Add missing comma
spotted by jsg
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rpki-client/http.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/http.c b/usr.sbin/rpki-client/http.c index 157e753f712..78ee91e5705 100644 --- a/usr.sbin/rpki-client/http.c +++ b/usr.sbin/rpki-client/http.c @@ -1,4 +1,4 @@ -/* $OpenBSD: http.c,v 1.84 2024/04/23 09:09:29 tb Exp $ */ +/* $OpenBSD: http.c,v 1.85 2024/04/23 10:27:46 tb Exp $ */ /* * Copyright (c) 2020 Nils Fisher <nils_fisher@hotmail.com> * Copyright (c) 2020 Claudio Jeker <claudio@openbsd.org> @@ -1163,7 +1163,7 @@ proxy_connect(struct http_connection *conn) /* XXX handle auth */ if ((r = asprintf(&conn->buf, "CONNECT %s HTTP/1.1\r\n" "Host: %s\r\n" - "User-Agent: " HTTP_USER_AGENT "\r\n%s\r\n", host, host + "User-Agent: " HTTP_USER_AGENT "\r\n%s\r\n", host, host, proxy.proxyauth)) == -1) err(1, NULL); conn->bufsz = r; |