summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Melani <daniel.melani@gmail.com>2015-05-27 11:27:03 +0200
committerDaniel Stenberg <daniel@haxx.se>2015-05-27 11:31:48 +0200
commitc005790ff1c0acf432537d909c9c9310dd9cb193 (patch)
treecd9951a6d22aaa4720aed8cb4a03b576dba68872
parent49a6642f016b4817c901908799122583876f3dc1 (diff)
downloadgnurl-c005790ff1c0acf432537d909c9c9310dd9cb193.tar.gz
gnurl-c005790ff1c0acf432537d909c9c9310dd9cb193.tar.bz2
gnurl-c005790ff1c0acf432537d909c9c9310dd9cb193.zip
openssl: typo in comment
-rw-r--r--lib/vtls/openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c
index 3f3dc4e34..96a7d6e89 100644
--- a/lib/vtls/openssl.c
+++ b/lib/vtls/openssl.c
@@ -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