From 727334455867059f824bf4a11202aa0b294d9a5c Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 8 Jun 2005 15:42:58 +0000 Subject: [PATCH] * environ.cc (spenvs): Remove cut/paste error which associated CYGWIN_DEBUG with HOME. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/environ.cc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * environ.cc (spenvs): Remove cut/paste error which associated + CYGWIN_DEBUG with HOME. + 2005-06-08 Corinna Vinschen * 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},