From: tb Date: Tue, 23 Apr 2024 10:27:46 +0000 (+0000) Subject: Add missing comma X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c222e9aef8c399eb76488463819d331ea91b240a;p=openbsd Add missing comma spotted by jsg --- 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 * Copyright (c) 2020 Claudio Jeker @@ -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;