diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2003-09-10 01:44:39 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2003-09-10 01:44:39 +0200 |
commit | 82384690e2ac49d6604d66bf5ac04c93f3e64a71 (patch) | |
tree | 5b4488b8560d7eb423ef1439da30b9b3992a74af | |
parent | Generalise the definition of strcasecmp() and strncasecmp() for (diff) | |
download | openssl-82384690e2ac49d6604d66bf5ac04c93f3e64a71.tar.xz openssl-82384690e2ac49d6604d66bf5ac04c93f3e64a71.zip |
Typos.
-rw-r--r-- | crypto/o_str.c | 3 | ||||
-rw-r--r-- | crypto/o_str.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/crypto/o_str.c b/crypto/o_str.c index 8bcdc25e76..174db3156e 100644 --- a/crypto/o_str.c +++ b/crypto/o_str.c @@ -57,6 +57,7 @@ */ #include <o_str.h> +#include <openssl/e_os2.h> int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n) { @@ -87,7 +88,7 @@ int OPENSSL_strcasecmp(const char *str1, const char *str2) #if defined(OPENSSL_SYS_VMS) return OSSL_strncasecmp(str1, str2, (size_t)-1); #elif defined(OPENSSL_SYS_WINDOWS) - return _stricmp(str1, str2, n); + return _stricmp(str1, str2); #else return strcasecmp(str1, str2); #endif diff --git a/crypto/o_str.h b/crypto/o_str.h index 5535123abc..744a6e27d3 100644 --- a/crypto/o_str.h +++ b/crypto/o_str.h @@ -62,6 +62,6 @@ #include <string.h> int OPENSSL_strcasecmp(const char *str1, const char *str2); -int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n) +int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n); #endif |