File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -409,23 +409,24 @@ CreateX509CertCredential(rfbCredential *cred)
409
409
gnutls_certificate_credentials_t x509_cred ;
410
410
int ret ;
411
411
412
- if (!cred -> x509Credential .x509CACertFile )
413
- {
414
- rfbClientLog ("No CA certificate provided.\n" );
415
- return NULL ;
416
- }
417
-
418
412
if ((ret = gnutls_certificate_allocate_credentials (& x509_cred )) < 0 )
419
413
{
420
414
rfbClientLog ("Cannot allocate credentials: %s.\n" , gnutls_strerror (ret ));
421
415
return NULL ;
422
416
}
423
- if ((ret = gnutls_certificate_set_x509_trust_file (x509_cred ,
424
- cred -> x509Credential .x509CACertFile , GNUTLS_X509_FMT_PEM )) < 0 )
417
+ if (cred -> x509Credential .x509CACertFile )
425
418
{
426
- rfbClientLog ("Cannot load CA credentials: %s.\n" , gnutls_strerror (ret ));
427
- gnutls_certificate_free_credentials (x509_cred );
428
- return NULL ;
419
+ if ((ret = gnutls_certificate_set_x509_trust_file (x509_cred ,
420
+ cred -> x509Credential .x509CACertFile , GNUTLS_X509_FMT_PEM )) < 0 )
421
+ {
422
+ rfbClientLog ("Cannot load CA credentials: %s.\n" , gnutls_strerror (ret ));
423
+ gnutls_certificate_free_credentials (x509_cred );
424
+ return NULL ;
425
+ }
426
+ } else
427
+ {
428
+ int certs = gnutls_certificate_set_x509_system_trust (x509_cred );
429
+ rfbClientLog ("Using default paths for certificate verification, %d certs found\n" , certs );
429
430
}
430
431
if (cred -> x509Credential .x509ClientCertFile && cred -> x509Credential .x509ClientKeyFile )
431
432
{
You can’t perform that action at this time.
0 commit comments