Commit c2acc214 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

gnutls: print error if key storage fails

parent cbcd3533
...@@ -313,8 +313,11 @@ static int gnutls_CertSearch (vlc_tls_t *obj, const char *host, ...@@ -313,8 +313,11 @@ static int gnutls_CertSearch (vlc_tls_t *obj, const char *host,
time (&expiry); time (&expiry);
expiry += 24 * 60 * 60; expiry += 24 * 60 * 60;
case 3: case 3:
gnutls_store_pubkey (NULL, NULL, host, service, GNUTLS_CRT_X509, val = gnutls_store_pubkey (NULL, NULL, host, service,
datum, expiry, 0); GNUTLS_CRT_X509, datum, expiry, 0);
if (val)
msg_Err (obj, "cannot store X.509 certificate: %s",
gnutls_strerror (val));
return 0; return 0;
} }
return -1; return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment