]> granicus.if.org Git - curl/commitdiff
openssl: typo in comment
authorDaniel Melani <daniel.melani@gmail.com>
Wed, 27 May 2015 09:27:03 +0000 (11:27 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 27 May 2015 09:31:48 +0000 (11:31 +0200)
lib/vtls/openssl.c

index 3f3dc4e347aabdd679bad1635f61cba471977204..96a7d6e89c5c1cca29927749b7ea9a6b52953064 100644 (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