diff options
author | Christopher Faylor <me@cgf.cx> | 2002-06-29 02:36:08 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-06-29 02:36:08 +0000 |
commit | 094d51931173d399d5719411554e1c61af500bfe (patch) | |
tree | 9194597b3e482e0d6990cf543ff7e3cd4f8f0c4f /winsup/cygwin/cygheap.cc | |
parent | 2d5eb17ee38b19b91eaecceb9136885aa4281080 (diff) | |
download | cygnal-094d51931173d399d5719411554e1c61af500bfe.tar.gz cygnal-094d51931173d399d5719411554e1c61af500bfe.tar.bz2 cygnal-094d51931173d399d5719411554e1c61af500bfe.zip |
* cygheap.h (cygheap_user): Reorg to accommodate environment caching.
(cygheap_user::logsrv): New method.
(cygheap_user::winname): Ditto.
(cygheap_user::domain): Ditto.
(cygheap_user::test_uid): Ditto.
* cygheap.cc (cygheap_user::set_name): Reflect name "pwinname" name change.
* environ.cc (getwinenveq): New function.
(spenv::from_cygheap): Change arguments.
(spenv::retrieve): Ditto for call. Use getwinenveq to retrieve info from
environment. Always return value from cygwin environment, if it exists.
* environ.h (getwinenveq): Declare.
* uinfo.cc (cygheap_user::ontherange): Use logsrv() rather than env_logsrv().
(cygheap_user::test_uid): Define new method.
(cygheap_user::env_logsrv): Accept environment arguments. Use test_uid to find
info.
(cygheap_user::env_domain): Ditto.
(cygheap_user::env_userprofile): Ditto.
(cygheap_user::env_homepath): Ditto.
(cygheap_user::env_homedrive): Ditto.
(cygheap_user::env_name): Ditto.
Diffstat (limited to 'winsup/cygwin/cygheap.cc')
-rw-r--r-- | winsup/cygwin/cygheap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc index 2cf7e2068..f74a97a57 100644 --- a/winsup/cygwin/cygheap.cc +++ b/winsup/cygwin/cygheap.cc @@ -465,7 +465,7 @@ cygheap_user::set_name (const char *new_name) cfree_and_set (homepath); cfree_and_set (plogsrv); cfree_and_set (pdomain); - cfree_and_set (winname); + cfree_and_set (pwinname); } BOOL |