From 887acb48e4953aa44e7e3be922a591549a25c9ba Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 7 Apr 2023 14:05:00 +0200 Subject: [PATCH] http_proxy: provide missing arg to infof() call Pointed out by Coverity Closes #10904 --- lib/http_proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http_proxy.c b/lib/http_proxy.c index 6e60f8cc2e..add376ba4f 100644 --- a/lib/http_proxy.c +++ b/lib/http_proxy.c @@ -106,7 +106,7 @@ connect_sub: #endif default: DEBUGF(LOG_CF(data, cf, "installing subfilter for default HTTP/1.1")); - infof(data, "CONNECT tunnel: unsupported ALPN(%d) negotiated"); + infof(data, "CONNECT tunnel: unsupported ALPN(%d) negotiated", alpn); result = CURLE_COULDNT_CONNECT; goto out; }