diff options
author | Matthew Hall <matthew.hall@threatstream.com> | 2015-03-24 17:35:36 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-04-13 22:25:04 +0200 |
commit | 27ac643455b55a6c180b94d2ff3b29e2babdf1fc (patch) | |
tree | 63b3129832909a08e8c12984fa157557493d00a5 | |
parent | b3175a767d5375c10662a564fdc598f709192cac (diff) |
vtls_openssl: fix minor typo in PKCS#12 load routine
-rw-r--r-- | lib/vtls/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |