diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2006-12-10 16:20:43 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2006-12-10 16:20:43 +0000 |
commit | 6c64fb2fda86ae252db928f9e5595463b2ae36c5 (patch) | |
tree | 0eef98f92c5f63725a10ae3c1331874c9c2f534a /winsup/cygwin/fhandler.cc | |
parent | 37ae69e8b1c769130bc9d3f80f5e4c73deb5b790 (diff) | |
download | cygnal-6c64fb2fda86ae252db928f9e5595463b2ae36c5.tar.gz cygnal-6c64fb2fda86ae252db928f9e5595463b2ae36c5.tar.bz2 cygnal-6c64fb2fda86ae252db928f9e5595463b2ae36c5.zip |
* fhandler.cc (rootdir): Clarify comment.
Diffstat (limited to 'winsup/cygwin/fhandler.cc')
-rw-r--r-- | winsup/cygwin/fhandler.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler.cc b/winsup/cygwin/fhandler.cc index dfa2e2177..26ad3e96c 100644 --- a/winsup/cygwin/fhandler.cc +++ b/winsup/cygwin/fhandler.cc @@ -1240,8 +1240,9 @@ rootdir (const char *full_path, char *root_path) *rootp++ = '\\'; *rootp = '\0'; - /* This determines whether reparse points are available. Reparse points - on remote shares are not recognized by Windows. */ + /* This determines whether reparse points are available. Volume reparse + points on remote shares are not recognized by Windows functions like + GetVoluemInformation, nor by their native NT counterparts. */ if (!wincap.has_guid_volumes () || GetDriveType (root_path) == DRIVE_REMOTE) return root_path; |