We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 501da57 commit f673c4aCopy full SHA for f673c4a
picoquic/tls_api.c
@@ -155,12 +155,12 @@ static int tls_api_is_init = 0;
155
void picoquic_tls_api_init_providers(int unload)
156
{
157
if ((tls_api_init_flags & TLS_API_INIT_FLAGS_NO_MINICRYPTO) == 0) {
158
- DBG_PRINTF("%s", "%s minicrypto", (unload)?"Unloading":"Loading");
+ DBG_PRINTF("%s minicrypto", (unload)?"Unloading":"Loading");
159
picoquic_ptls_minicrypto_load(unload);
160
}
161
#ifndef PTLS_WITHOUT_OPENSSL
162
if ((tls_api_init_flags & TLS_API_INIT_FLAGS_NO_OPENSSL) == 0) {
163
- DBG_PRINTF("%s", "%s openssl", (unload)?"Unloading":"Loading");
+ DBG_PRINTF("%s openssl", (unload)?"Unloading":"Loading");
164
picoquic_ptls_openssl_load(unload);
165
166
#else
0 commit comments