From db57a3633615f6863b42c1ed694752dd4d70cc50 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 1 Jul 2002 15:50:02 +0000 Subject: * uinfo.cc (cygheap_user::ontherange): Make cygwin root the last resort for HOMEPATH/HOMEDRIVE for consistency with HOME. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/uinfo.cc | 6 ++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index e5b232c1f..ba0f44e27 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2002-07-01 Christopher Faylor + + * uinfo.cc (cygheap_user::ontherange): Make cygwin root the last resort + for HOMEPATH/HOMEDRIVE for consistency with HOME. + 2002-07-01 Corinna Vinschen * shared.cc (sec_none): Move to sec_helper.cc. diff --git a/winsup/cygwin/uinfo.cc b/winsup/cygwin/uinfo.cc index d8fb3829b..2e7f65c93 100644 --- a/winsup/cygwin/uinfo.cc +++ b/winsup/cygwin/uinfo.cc @@ -265,10 +265,8 @@ cygheap_user::ontherange (homebodies what, struct passwd *pw) MAX_PATH); if (homepath_env_buf[0]) strcat (homepath_env_buf, "\\"); - else if (!GetSystemDirectory (homepath_env_buf, MAX_PATH)) - strcpy (homepath_env_buf, "c:\\"); - else if ((p = strchr (homepath_env_buf, '\\'))) - p[1] = '\0'; + else + cygwin_conv_to_full_posix_path (homepath_env_buf, "/"); } } } -- cgit v1.2.3