Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-06-08 19:42:58 +0400
committerChristopher Faylor <me@cgf.cx>2005-06-08 19:42:58 +0400
commit727334455867059f824bf4a11202aa0b294d9a5c (patch)
treebf49beb655d81e4a0174714afa409e0770a505c3 /winsup/cygwin
parentce132d0ffdcaac7a94e55c9fb9e84f8de134a97d (diff)
* environ.cc (spenvs): Remove cut/paste error which associated CYGWIN_DEBUG
with HOME.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/environ.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index ae5e1f584..3b0329ba4 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-08 Christopher Faylor <cgf@timesys.com>
+
+ * environ.cc (spenvs): Remove cut/paste error which associated
+ CYGWIN_DEBUG with HOME.
+
2005-06-08 Corinna Vinschen <corinna@vinschen.de>
* security.cc (cygwin_logon_user): Run LogonUser in the primary
diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc
index 5af62d628..ddd038285 100644
--- a/winsup/cygwin/environ.cc
+++ b/winsup/cygwin/environ.cc
@@ -870,7 +870,7 @@ struct spenv
static NO_COPY spenv spenvs[] =
{
#ifdef DEBUGGING
- {NL ("CYGWIN_DEBUG="), false, true, &cygheap_user::env_homedrive},
+ {NL ("CYGWIN_DEBUG="), false, true, NULL},
#endif
{NL ("HOMEDRIVE="), false, false, &cygheap_user::env_homedrive},
{NL ("HOMEPATH="), false, false, &cygheap_user::env_homepath},