OSDN Git Service

* cygheap.cc (cygheap_user::set_name): Avoid clearing things when just setting
authorcgf <cgf>
Wed, 26 Jun 2002 19:39:04 +0000 (19:39 +0000)
committercgf <cgf>
Wed, 26 Jun 2002 19:39:04 +0000 (19:39 +0000)
name to itself or during first time initialization.
* environ.cc (check_case_init): Make case insensitive.

winsup/cygwin/ChangeLog
winsup/cygwin/cygheap.cc
winsup/cygwin/environ.cc

index 47ddb26..1af4606 100644 (file)
@@ -1,3 +1,10 @@
+2002-06-26  Christopher Faylor  <cgf@redhat.com>
+
+       * 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.
+
 2002-06-26  Corinna Vinschen  <corinna@vinschen.de>
 
        * fhandler.h (fhandler_socket::bind): Add method definition.
index 0522255..ded9c25 100644 (file)
@@ -440,9 +440,17 @@ cygheap_user::~cygheap_user ()
 void
 cygheap_user::set_name (const char *new_name)
 {
-  if (pname)
+  if (strcasematch (new_name, pname))
+    return;            /* nothing changed */
+
+  bool allocated = !!pname;
+  if (allocated)
     cfree (pname);
+
   pname = cstrdup (new_name ? new_name : "");
+  if (!allocated)
+    return;            /* Initializing.  Don't bother with other stuff. */
+
   homedrive = NULL;
   homepath = NULL;
   if (plogsrv)
index ab28026..114fce7 100644 (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");