* uinfo.cc (cygheap_user::ontherange): Make cygwin root the last resort for

HOMEPATH/HOMEDRIVE for consistency with HOME.
This commit is contained in:
Christopher Faylor 2002-07-01 15:50:02 +00:00
parent 73d97618a7
commit db57a36336
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2002-07-01 Christopher Faylor <cgf@redhat.com>
* uinfo.cc (cygheap_user::ontherange): Make cygwin root the last resort
for HOMEPATH/HOMEDRIVE for consistency with HOME.
2002-07-01 Corinna Vinschen <corinna@vinschen.de>
* shared.cc (sec_none): Move to sec_helper.cc.

View File

@ -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, "/");
}
}
}