diff options
author | Christopher Faylor <me@cgf.cx> | 2006-01-08 20:10:51 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-01-08 20:10:51 +0000 |
commit | 3e45d281b3104c07b81579389dba0321edbf146d (patch) | |
tree | 9b0b0691d7faebc1cc23c9ae782ea734035c0bf7 | |
parent | b5c8e3312036d054998bad8fdb1f35ba9e7ff2c1 (diff) | |
download | cygnal-3e45d281b3104c07b81579389dba0321edbf146d.tar.gz cygnal-3e45d281b3104c07b81579389dba0321edbf146d.tar.bz2 cygnal-3e45d281b3104c07b81579389dba0321edbf146d.zip |
* environ.cc (spenvs[]): windir -> WINDIR.
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/environ.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index d4f274d84..c6ee41922 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2006-01-08 Christopher Faylor <cgf@timesys.com> + + * environ.cc (spenvs[]): windir -> WINDIR. + 2006-01-07 Christopher Faylor <cgf@timesys.com> * fhandler_console.cc (fhandler_console::need_invisible): Remove diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc index 6658fd5dc..952dea544 100644 --- a/winsup/cygwin/environ.cc +++ b/winsup/cygwin/environ.cc @@ -889,7 +889,7 @@ static NO_COPY spenv spenvs[] = {NL ("USERDOMAIN="), false, false, &cygheap_user::env_domain}, {NL ("USERNAME="), false, false, &cygheap_user::env_name}, {NL ("USERPROFILE="), false, false, &cygheap_user::env_userprofile}, - {NL ("windir="), true, true, &cygheap_user::env_systemroot} + {NL ("WINDIR="), true, true, &cygheap_user::env_systemroot} }; char * |