From: William A. Rowe Jr Date: Fri, 28 Apr 2000 05:50:17 +0000 (+0000) Subject: Replace ERROR constant with TODO_ERROR to flag these for review. X-Git-Tag: APACHE_2_0_ALPHA_3~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=150b5580888e0239f39629388a7d8c800873eab0;p=apache Replace ERROR constant with TODO_ERROR to flag these for review. ERROR is a Windows.h constant of 0, or success, and is unrelated to the error codes! git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85071 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/os/win32/os.h b/os/win32/os.h index 9f4b2e5927..806b53b3af 100644 --- a/os/win32/os.h +++ b/os/win32/os.h @@ -131,6 +131,10 @@ every configuration function as __stdcall. #define MODULE_VAR_EXPORT __declspec(dllexport) + +#define HAVE_STRCASECMP +#define HAVE_STRNCASECMP + #define strcasecmp(s1, s2) stricmp(s1, s2) #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n) #define lstat(x, y) stat(x, y)