* fhandler.cc (fhandler_base::open): Set file attributes to correct

value when creating files.
	* path.h (class path_conv): Add write accessor for file_attributes.
This commit is contained in:
Corinna Vinschen
2004-05-11 15:39:50 +00:00
parent 75b5f30fdd
commit 0175b5311e
3 changed files with 9 additions and 0 deletions

View File

@@ -201,6 +201,7 @@ class path_conv
DWORD get_devn () {return dev.devn;}
short get_unitn () {return dev.minor;}
DWORD file_attributes () {return fileattr;}
void file_attributes (DWORD new_attr) {fileattr = new_attr;}
DWORD drive_type () {return fs.drive_type ();}
DWORD fs_flags () {return fs.flags ();}
bool fs_has_ea () {return fs.has_ea ();}