openssl: typo in comment

This commit is contained in:
Daniel Melani 2015-05-27 11:27:03 +02:00 committed by Daniel Stenberg
parent 49a6642f01
commit c005790ff1
1 changed files with 1 additions and 1 deletions

View File

@ -733,7 +733,7 @@ static char *SSL_strerror(unsigned long error, char *buf, size_t size)
{
#ifdef HAVE_ERR_ERROR_STRING_N
/* OpenSSL 0.9.6 and later has a function named
ERRO_error_string_n() that takes the size of the buffer as a
ERR_error_string_n() that takes the size of the buffer as a
third argument */
ERR_error_string_n(error, buf, size);
#else