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 | efeb63d6417c255b2c959743b29ea17ab117e02e (patch) | |
tree | cdd350997cd4ee3c887299addd180fb7da529843 | |
parent | b6e1f502b287f52416784e15eb22d99c84562acb (diff) | |
download | samba-efeb63d6417c255b2c959743b29ea17ab117e02e.tar.gz samba-efeb63d6417c255b2c959743b29ea17ab117e02e.tar.bz2 samba-efeb63d6417c255b2c959743b29ea17ab117e02e.zip |
VFS layer should be TRANSPARENT, not OPAQUE
(This used to be commit 30f207375a7e54265fc696a91ba4686ed932329e)
-rw-r--r-- | source3/modules/vfs_readonly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_readonly.c b/source3/modules/vfs_readonly.c index f1914b6841..5959ce900c 100644 --- a/source3/modules/vfs_readonly.c +++ b/source3/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} }; |