Commit 4026c6fa authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  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
parent d1b8f7d7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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)