diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2008-04-02 11:45:14 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2008-04-02 11:45:14 +0000 |
commit | c8cd2f2255167288a31293e21576b8d8ae1347ba (patch) | |
tree | eb20ec154d8ea650cc842df56652ce442c2306d1 /winsup/cygwin/path.cc | |
parent | 3d0192def9535a542374f1472924f28e4cb37669 (diff) | |
download | cygnal-c8cd2f2255167288a31293e21576b8d8ae1347ba.tar.gz cygnal-c8cd2f2255167288a31293e21576b8d8ae1347ba.tar.bz2 cygnal-c8cd2f2255167288a31293e21576b8d8ae1347ba.zip |
* path.cc (enum symlink_t): Rename from shortcut_t.
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r-- | winsup/cygwin/path.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index b9191e252..83ce8017e 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -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; |