From: Matthew Hall Date: Wed, 25 Mar 2015 00:35:36 +0000 (-0700) Subject: vtls_openssl: fix minor typo in PKCS#12 load routine X-Git-Tag: curl-7_42_0~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=27ac643455b55a6c180b94d2ff3b29e2babdf1fc;p=curl vtls_openssl: fix minor typo in PKCS#12 load routine --- diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 7868e3e4d..b4fd38c13 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -496,7 +496,7 @@ int cert_stuff(struct connectdata *conn, fclose(f); if(!p12) { - failf(data, "error reading PKCS12 file '%s'", cert_file ); + failf(data, "error reading PKCS12 file '%s'", cert_file); return 0; }