File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -322,12 +322,12 @@ SSLInitializeStatistics()
322322 Error (" Failed to allocate stack for TLS group names" );
323323 } else {
324324 constexpr int ALL_GROUPS = 1 ;
325- DbgPrint (dbg_ctl_ssl, " Calling SSL_CTX_get0_implemented_groups on loaded SSL context" );
325+ Dbg (dbg_ctl_ssl, " Calling SSL_CTX_get0_implemented_groups on loaded SSL context" );
326326 if (SSL_CTX_get0_implemented_groups (ctx, ALL_GROUPS, group_names) != 1 ) {
327327 Error (" Failed to get implemented groups via SSL_CTX_get0_implemented_groups" );
328328 }
329329 int const num_groups = sk_OPENSSL_CSTRING_num (group_names);
330- DbgPrint (dbg_ctl_ssl, " SSL_CTX_get0_implemented_groups returned %d groups" , num_groups);
330+ Dbg (dbg_ctl_ssl, " SSL_CTX_get0_implemented_groups returned %d groups" , num_groups);
331331
332332 for (int index = 0 ; index < num_groups; index++) {
333333 const char *name = sk_OPENSSL_CSTRING_value (group_names, index);
You can’t perform that action at this time.
0 commit comments