* path.cc (enum symlink_t): Rename from shortcut_t.

This commit is contained in:
Corinna Vinschen 2008-04-02 11:45:14 +00:00
parent 3d0192def9
commit c8cd2f2255
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2008-04-02 Corinna Vinschen <corinna@vinschen.de>
* path.cc (enum symlink_t): Rename from shortcut_t.
2008-04-02 Corinna Vinschen <corinna@vinschen.de>
* path.cc (symlink_info::check_reparse_point): Use NtFsControlFile

View File

@ -3778,7 +3778,7 @@ symlink_info::parse_device (const char *contents)
Return -1 on error, 0 if PATH is not a symlink, or the length
stored into BUF if PATH is a symlink. */
enum shortcut_t {
enum symlink_t {
is_no_symlink,
is_shortcut_symlink,
is_reparse_symlink,
@ -3907,7 +3907,7 @@ symlink_info::check (char *path, const suffix_info *suffixes, unsigned opt)
|| (opt & PC_SYM_IGNORE))
goto file_not_symlink;
shortcut_t sym_check;
symlink_t sym_check;
sym_check = is_no_symlink;