Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-03-26 05:54:22 +0400
committerChristopher Faylor <me@cgf.cx>2000-03-26 05:54:22 +0400
commitc114dfb0c0fa383d09bdb15cb03a81a0dce51356 (patch)
treed1e684795e033bdd8849e36595f8d4e89ef01823 /winsup/cygwin/path.h
parent4f7831c1f56b3a77fdc35d93952b604405b66af4 (diff)
* path.cc (symlink_check_one): Recognize symlink settings from the mount table.
* path.h: Make PATH_SYMLINK an alias for MOUNT_SYMLINK. * syscalls.cc (stat_worker): Use extension search mechanism in path_conv to look for .exe rather than trying to special case it here. * mount.h: Make MOUNT_SYMLINK a real option.
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r--winsup/cygwin/path.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h
index 01058a49b..f3be6b542 100644
--- a/winsup/cygwin/path.h
+++ b/winsup/cygwin/path.h
@@ -28,7 +28,7 @@ enum symlink_follow
enum
{
PATH_NOTHING = 0,
- PATH_SYMLINK = 1,
+ PATH_SYMLINK = MOUNT_SYMLINK,
PATH_BINARY = MOUNT_BINARY,
PATH_EXEC = MOUNT_EXEC,
PATH_SOCKET = 0x40000000,