diff options
author | Christopher Faylor <me@cgf.cx> | 2000-03-26 01:54:22 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-03-26 01:54:22 +0000 |
commit | c114dfb0c0fa383d09bdb15cb03a81a0dce51356 (patch) | |
tree | d1e684795e033bdd8849e36595f8d4e89ef01823 /winsup/cygwin/include/sys | |
parent | 4f7831c1f56b3a77fdc35d93952b604405b66af4 (diff) | |
download | cygnal-c114dfb0c0fa383d09bdb15cb03a81a0dce51356.tar.gz cygnal-c114dfb0c0fa383d09bdb15cb03a81a0dce51356.tar.bz2 cygnal-c114dfb0c0fa383d09bdb15cb03a81a0dce51356.zip |
* 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/include/sys')
-rw-r--r-- | winsup/cygwin/include/sys/mount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/include/sys/mount.h b/winsup/cygwin/include/sys/mount.h index 2c4ad30a3..5f640178f 100644 --- a/winsup/cygwin/include/sys/mount.h +++ b/winsup/cygwin/include/sys/mount.h @@ -7,7 +7,7 @@ extern "C" { enum { - /* MOUNT_SYMLINK = 1, place holder. Do not use it. */ + MOUNT_SYMLINK = 1, /* "mount point" is a symlink */ MOUNT_BINARY = 2, /* "binary" format read/writes */ MOUNT_SYSTEM = 8, /* mount point came from system table */ MOUNT_EXEC = 16, /* Any file in the mounted directory gets 'x' bit */ |