diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-02-22 16:04:19 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-02-22 16:04:19 +0000 |
commit | 501f1020f94e73eedaf581c1371387e2ae0edb8b (patch) | |
tree | 1f8d56834d2935b6eb8d821440c3b7fdfa883647 /winsup/cygwin/wincap.cc | |
parent | e387a378b452c5524665b149af41779c416134fa (diff) | |
download | cygnal-501f1020f94e73eedaf581c1371387e2ae0edb8b.tar.gz cygnal-501f1020f94e73eedaf581c1371387e2ae0edb8b.tar.bz2 cygnal-501f1020f94e73eedaf581c1371387e2ae0edb8b.zip |
Throughout remove all usage of wincap.access_denied_on_delete.
* dir.cc (rmdir): Add existance check to be errno-compatible with Linux.
* fhandler_disk_file.cc (fhandler_disk_file::rmdir): Drop test for
non-existent dir on 9x share.
* syscalls.cc (unlink): Add comment.
* wincap.cc: Remove access_denied_on_delete flag throughout.
* wincap.h: Ditto.
Diffstat (limited to 'winsup/cygwin/wincap.cc')
-rw-r--r-- | winsup/cygwin/wincap.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc index baa708c7a..0be5446e8 100644 --- a/winsup/cygwin/wincap.cc +++ b/winsup/cygwin/wincap.cc @@ -17,7 +17,6 @@ static NO_COPY wincaps wincap_unknown = { chunksize:0, heapslop:0x0, is_server:false, - access_denied_on_delete:false, has_delete_on_close:true, has_page_guard:true, has_security:true, @@ -81,7 +80,6 @@ static NO_COPY wincaps wincap_nt4 = { chunksize:0, heapslop:0x0, is_server:false, - access_denied_on_delete:false, has_delete_on_close:true, has_page_guard:true, has_security:true, @@ -145,7 +143,6 @@ static NO_COPY wincaps wincap_nt4sp4 = { chunksize:0, heapslop:0x0, is_server:false, - access_denied_on_delete:false, has_delete_on_close:true, has_page_guard:true, has_security:true, @@ -209,7 +206,6 @@ static NO_COPY wincaps wincap_2000 = { chunksize:0, heapslop:0x0, is_server:false, - access_denied_on_delete:false, has_delete_on_close:true, has_page_guard:true, has_security:true, @@ -273,7 +269,6 @@ static NO_COPY wincaps wincap_xp = { chunksize:0, heapslop:0x0, is_server:false, - access_denied_on_delete:false, has_delete_on_close:true, has_page_guard:true, has_security:true, @@ -337,7 +332,6 @@ static NO_COPY wincaps wincap_2003 = { chunksize:0, heapslop:0x4, is_server:true, - access_denied_on_delete:false, has_delete_on_close:true, has_page_guard:true, has_security:true, @@ -401,7 +395,6 @@ static NO_COPY wincaps wincap_vista = { chunksize:0, heapslop:0x4, is_server:false, - access_denied_on_delete:false, has_delete_on_close:true, has_page_guard:true, has_security:true, |