* mkvers.sh: Avoid "-dontuse" tags.

* path.cc (path_conv::check): Set exec state based on known situations.
* path.cc (mount_item::fnmunge): New function.
(mount_item::build_win32): New function.
(mount_info::conv_to_win32_path): Use build_win32 to build windows path.
* path.h (mount_item::fnmunge): Declare new function.
(mount_item::build_win32): Ditto.
* sys/mount.h (MOUNT_ENC): Define.
This commit is contained in:
Christopher Faylor
2003-05-29 03:50:15 +00:00
parent 72c1470d67
commit b666c2eb34
5 changed files with 74 additions and 35 deletions

View File

@@ -28,7 +28,8 @@ enum
not yet implemented */
MOUNT_NOTEXEC = 0x100, /* don't check files for executable magic */
MOUNT_DEVFS = 0x200, /* /device "filesystem" */
MOUNT_PROC = 0x400 /* /proc "filesystem" */
MOUNT_PROC = 0x400, /* /proc "filesystem" */
MOUNT_ENC = 0x800 /* encode special characters */
};
int mount (const char *, const char *, unsigned __flags);