From dc85205db4d666e2cdc11cacba9d094c7fcfc942 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 4 Oct 2017 16:30:17 +0200 Subject: [PATCH] fixup! http: add support for selecting SSL backends at runtime Noticed by clang... --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.c b/http.c index b5c4db671e..f68efa20c4 100644 --- a/http.c +++ b/http.c @@ -934,7 +934,7 @@ void http_init(struct remote *remote, const char *url, int proactive_auth) http_ssl_backend); for (i = 0; backends[i]; i++) strbuf_addf(&buf, "\n\t%s", backends[i]->name); - die(buf.buf); + die("%s", buf.buf); case CURLSSLSET_NO_BACKENDS: die(_("Could not set SSL backend to '%s': " "cURL was built without SSL backends"),