From c222e9aef8c399eb76488463819d331ea91b240a Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 23 Apr 2024 10:27:46 +0000 Subject: [PATCH] Add missing comma spotted by jsg --- usr.sbin/rpki-client/http.c | 4 ++-- 1 file 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 * 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; -- 2.20.1