From f0c5db92f76d5be7639f78215a2190db56111602 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 27 Dec 2003 14:54:48 +0000 Subject: [PATCH] Include strings.h so strcasecmp() and strncasecmp() get properly declared. --- crypto/o_str.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crypto/o_str.c b/crypto/o_str.c index 174db3156e..efe20b77a9 100644 --- a/crypto/o_str.c +++ b/crypto/o_str.c @@ -56,7 +56,8 @@ * */ -#include +#include +#include "o_str.h" #include int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n) -- 2.34.1