* cygheap.cc (cygheap_user::set_name): Avoid clearing things when just setting

name to itself or during first time initialization.
* environ.cc (check_case_init): Make case insensitive.
This commit is contained in:
Christopher Faylor
2002-06-26 19:39:05 +00:00
parent be5007aa52
commit c99902b9b0
3 changed files with 18 additions and 3 deletions

View File

@@ -411,12 +411,12 @@ check_case_init (const char *buf)
pcheck_case = PCHECK_RELAXED;
debug_printf ("File case checking set to RELAXED");
}
else if (strcmp (buf, "adjust")== 0)
else if (strcasematch (buf, "adjust"))
{
pcheck_case = PCHECK_ADJUST;
debug_printf ("File case checking set to ADJUST");
}
else if (strcmp (buf, "strict")== 0)
else if (strcasematch (buf, "strict"))
{
pcheck_case = PCHECK_STRICT;
debug_printf ("File case checking set to STRICT");