Fixed error string for example server private key file failure.

This commit is contained in:
John Safranek 2013-06-25 13:12:47 -07:00
parent 87eb94b7c4
commit 7fd3b8a993

View File

@ -385,8 +385,8 @@ THREAD_RETURN CYASSL_THREAD server_test(void* args)
if (!useNtruKey && !usePsk) {
if (SSL_CTX_use_PrivateKey_file(ctx, ourKey, SSL_FILETYPE_PEM)
!= SSL_SUCCESS)
err_sys("can't load server cert file, check file and run from"
" CyaSSL home dir");
err_sys("can't load server private key file, check file and run "
"from CyaSSL home dir");
}
#endif