diff options
author | Christopher Faylor <me@cgf.cx> | 2002-06-14 21:46:19 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-06-14 21:46:19 +0000 |
commit | 6d171b4482689bd1c8a49af94e57d451c8f66448 (patch) | |
tree | babdadeed9f28974354c25073eb06863c7f9da03 /winsup/cygwin/environ.cc | |
parent | b56d7e7937d0604025833e8c881f96c1d0e4147f (diff) | |
download | cygnal-6d171b4482689bd1c8a49af94e57d451c8f66448.tar.gz cygnal-6d171b4482689bd1c8a49af94e57d451c8f66448.tar.bz2 cygnal-6d171b4482689bd1c8a49af94e57d451c8f66448.zip |
* cygheap.h (cygheap_user::userprofile_env_buf): New static member.
* environ.cc (build_env): Add debugging statement.
(spenvs): Switch functions for USERDOMAIN and USERNAME.
* spawn.cc (spawn_guts): Move environment initialization prior to
cygheap_setup_for_child or environment info will never be copied to child.
Diffstat (limited to 'winsup/cygwin/environ.cc')
-rw-r--r-- | winsup/cygwin/environ.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc index 737c68d7f..9ed6e4142 100644 --- a/winsup/cygwin/environ.cc +++ b/winsup/cygwin/environ.cc @@ -765,8 +765,8 @@ static NO_COPY spenv spenvs[] = {"LOGONSERVER=", &cygheap_user::env_logsrv}, {"SYSTEMDRIVE=", NULL}, {"SYSTEMROOT=", NULL}, - {"USERDOMAIN=", &cygheap_user::env_name}, - {"USERNAME=", &cygheap_user::env_domain}, + {"USERDOMAIN=", &cygheap_user::env_domain}, + {"USERNAME=", &cygheap_user::env_name}, {"USERPROFILE=", &cygheap_user::env_userprofile}, }; @@ -939,6 +939,7 @@ build_env (const char * const *envp, char *&envblock, int &envc, of buffer */ } + debug_printf ("envp %p, envc %d", newenv, envc); return newenv; } |