----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 28, 2002 3:01 PM
Subject: cvs commit: jakarta-tomcat-connectors/jk/native2/common
jk_requtil.c


> costin      02/02/28 15:01:15
>
>   Modified:    jk/native2/common jk_requtil.c
>   Log:
>   Case insensitive, if 'native' maps are used we no longer create copies
>    of all the headers ( good for performance), but that also means we
>   don't have all-lowercase.
>
>   Someone with more C knowledge - let me know if strcasecmp is not
>   portable.

It's not portable (in particular, not to Windows).  However, you can
#ifdef WINDOWS
#define strcasecmp strcmpi
#endif



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to