From 5c2410d6e2aad3a40a722d8b3ec55b6c14db9912 Mon Sep 17 00:00:00 2001 From: Brian Havard Date: Mon, 24 Apr 2000 06:51:22 +0000 Subject: [PATCH] Change strncasecmp() definition to match Bill's prototype. Fixes compile break on OS/2. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85022 13f79535-47bb-0310-9956-ffa450edef68 --- server/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/util.c b/server/util.c index 3e9eb6a2a1d..169eca0a4aa 100644 --- a/server/util.c +++ b/server/util.c @@ -1713,7 +1713,7 @@ int strcasecmp(const char *a, const char *b) #endif #ifndef HAVE_STRNCASECMP -int strncasecmp(const char *a, const char *b, int n) +int strncasecmp(const char *a, const char *b, size_t n) { const char *p = a; const char *q = b; -- 2.47.2