diff options
author | Alexander Bokovoy <ab@samba.org> | 2003-08-12 22:10:49 +0000 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2003-08-12 22:10:49 +0000 |
commit | 30f207375a7e54265fc696a91ba4686ed932329e (patch) | |
tree | 0efaafcf40911878337113467e7b587d6ddb7d5e /source/modules | |
parent | c8393c013a468ea3e8493cd2fac7ace47b7d55ce (diff) | |
download | samba-30f207375a7e54265fc696a91ba4686ed932329e.tar.gz samba-30f207375a7e54265fc696a91ba4686ed932329e.tar.xz samba-30f207375a7e54265fc696a91ba4686ed932329e.zip |
VFS layer should be TRANSPARENT, not OPAQUE
Diffstat (limited to 'source/modules')
-rw-r--r-- | source/modules/vfs_readonly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/modules/vfs_readonly.c b/source/modules/vfs_readonly.c index f1914b68414..5959ce900cd 100644 --- a/source/modules/vfs_readonly.c +++ b/source/modules/vfs_readonly.c @@ -88,7 +88,7 @@ static int readonly_connect(vfs_handle_struct *handle, static vfs_op_tuple readonly_op_tuples[] = { /* Disk operations */ - {SMB_VFS_OP(readonly_connect), SMB_VFS_OP_CONNECT, SMB_VFS_LAYER_OPAQUE}, + {SMB_VFS_OP(readonly_connect), SMB_VFS_OP_CONNECT, SMB_VFS_LAYER_TRANSPARENT}, {SMB_VFS_OP(NULL), SMB_VFS_OP_NOOP, SMB_VFS_LAYER_NOOP} }; |