Remove PC_FULL from path_conv usage throughout.

* path.h (enum pathconv_arg): Change PC_FULL to PC_NOUILL.
* path.cc (path_conv::check): Test for PC_NOFULL rather than !PC_FULL.
(cygwin_conv_to_win32_path): Use PC_NOFULL to force non-absolute path.
This commit is contained in:
Christopher Faylor
2005-05-13 15:46:07 +00:00
parent eb6cd95fec
commit 063f1df2aa
10 changed files with 34 additions and 28 deletions

View File

@@ -681,7 +681,7 @@ fhandler_disk_file::ftruncate (_off64_t length)
int
fhandler_disk_file::link (const char *newpath)
{
path_conv newpc (newpath, PC_SYM_NOFOLLOW | PC_FULL | PC_POSIX);
path_conv newpc (newpath, PC_SYM_NOFOLLOW | PC_POSIX);
extern bool allow_winsymlinks;
if (newpc.error)
@@ -711,7 +711,7 @@ fhandler_disk_file::link (const char *newpath)
strcpy (new_lnk_buf, newpath);
strcat (new_lnk_buf, ".lnk");
newpath = new_lnk_buf;
newpc.check (newpath, PC_SYM_NOFOLLOW | PC_FULL);
newpc.check (newpath, PC_SYM_NOFOLLOW);
}
query_open (query_write_attributes);