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>2002-06-15 01:46:19 +0400
committerChristopher Faylor <me@cgf.cx>2002-06-15 01:46:19 +0400
commit6d171b4482689bd1c8a49af94e57d451c8f66448 (patch)
treebabdadeed9f28974354c25073eb06863c7f9da03 /winsup/cygwin/environ.cc
parentb56d7e7937d0604025833e8c881f96c1d0e4147f (diff)
* 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.cc5
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;
}