* cygpath.cc (do_pathconv): Fix erroneously printing native NT path
prefix introduced by previous patch.
This commit is contained in:
parent
f2ecf0ee5b
commit
80206d7f71
@ -1,3 +1,8 @@
|
||||
2010-02-22 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* cygpath.cc (do_pathconv): Fix erroneously printing native NT path
|
||||
prefix introduced by previous patch.
|
||||
|
||||
2010-02-22 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* locale.cc (lc_time_names): Add "date_fmt" entry.
|
||||
|
@ -687,6 +687,7 @@ do_pathconv (char *filename)
|
||||
wchar_t *buf2 = NULL;
|
||||
DWORD len;
|
||||
ssize_t err;
|
||||
bool print_tmp = false;
|
||||
cygwin_conv_path_t conv_func =
|
||||
(unix_flag ? CCP_WIN_A_TO_POSIX
|
||||
: (path_flag ? CCP_POSIX_TO_WIN_A
|
||||
@ -783,6 +784,7 @@ do_pathconv (char *filename)
|
||||
tmp += len;
|
||||
if (len == 6)
|
||||
*tmp = '\\';
|
||||
print_tmp = true;
|
||||
}
|
||||
}
|
||||
if (mixed_flag)
|
||||
@ -790,7 +792,7 @@ do_pathconv (char *filename)
|
||||
}
|
||||
}
|
||||
|
||||
puts (buf);
|
||||
puts (print_tmp ? tmp : buf);
|
||||
if (buf2)
|
||||
free (buf2);
|
||||
if (buf)
|
||||
|
Loading…
Reference in New Issue
Block a user