* autoload.cc (IsDebuggerPresent): Make conditional load since it is not

available everywhere.
* path.cc (mount_info::conv_to_win32_path): Only consider /cygdrive to be
FH_CYGDRIVE, not /cygdrive/x.
This commit is contained in:
Christopher Faylor
2001-11-24 20:57:19 +00:00
parent 53a12585ac
commit 3409763ff3
3 changed files with 14 additions and 5 deletions

View File

@ -1390,13 +1390,13 @@ mount_info::conv_to_win32_path (const char *src_path, char *dst,
{
unit = 0;
dst[0] = '\0';
if (mount_table->cygdrive_len > 1)
devn = FH_CYGDRIVE;
}
else if (!cygdrive_win32_path (pathbuf, dst, unit))
return ENOENT;
else
*flags = cygdrive_flags;
if (mount_table->cygdrive_len > 1)
devn = FH_CYGDRIVE;
goto out;
}