* environ.cc (check_case_init): Use strncasematch.

* cygwin.din: Export __mempcpy.
* cygwin/version.h: Bump api minor number.
This commit is contained in:
Christopher Faylor
2003-07-24 19:33:14 +00:00
parent b57a74b210
commit 1fbeb8274f
4 changed files with 11 additions and 2 deletions

View File

@@ -405,7 +405,7 @@ check_case_init (const char *buf)
if (!buf || !*buf)
return;
if (strncmp (buf, "relax", 5)== 0)
if (strncasematch (buf, "relax", 5))
{
pcheck_case = PCHECK_RELAXED;
debug_printf ("File case checking set to RELAXED");