From 27ac643455b55a6c180b94d2ff3b29e2babdf1fc Mon Sep 17 00:00:00 2001 From: Matthew Hall Date: Tue, 24 Mar 2015 17:35:36 -0700 Subject: [PATCH] vtls_openssl: fix minor typo in PKCS#12 load routine --- lib/vtls/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }