]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curl_ngtcp2: fix error message
authorJay Satiro <raysatiro@yahoo.com>
Tue, 12 Sep 2023 07:14:16 +0000 (03:14 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Tue, 12 Sep 2023 07:14:16 +0000 (03:14 -0400)
lib/vquic/curl_ngtcp2.c

index 85b2106a1dac508545ab9e5ad8b09f765c75c4aa..03e911d184282a7549bd9533b5e446e17865f09c 100644 (file)
@@ -619,7 +619,7 @@ static CURLcode quic_ssl_ctx(WOLFSSL_CTX **pssl_ctx,
   if(wolfSSL_CTX_set_cipher_list(ssl_ctx, QUIC_CIPHERS) != 1) {
     char error_buffer[256];
     ERR_error_string_n(ERR_get_error(), error_buffer, sizeof(error_buffer));
-    failf(data, "SSL_CTX_set_ciphersuites: %s", error_buffer);
+    failf(data, "wolfSSL_CTX_set_cipher_list: %s", error_buffer);
     goto out;
   }