summaryrefslogtreecommitdiff
path: root/source3/smbd/vfs.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-10-01 06:57:18 +0200
committerStefan Metzmacher <metze@samba.org>2011-10-08 01:43:38 +0200
commit9bd26d81900c16718e9ad3916aec5a7ac6b636be (patch)
tree80724d3c6a69c2cf9c793ca260a97754f9b839d6 /source3/smbd/vfs.c
parent37a17a49175b2f0eca5578467b785325561eb0cf (diff)
downloadsamba-9bd26d81900c16718e9ad3916aec5a7ac6b636be.tar.gz
samba-9bd26d81900c16718e9ad3916aec5a7ac6b636be.tar.bz2
samba-9bd26d81900c16718e9ad3916aec5a7ac6b636be.zip
s3:vfs: add SMB_VFS_GET_DFS_REFERRAL() hooks
metze
Diffstat (limited to 'source3/smbd/vfs.c')
-rw-r--r--source3/smbd/vfs.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c
index 9b1f2484b4..7f16670173 100644
--- a/source3/smbd/vfs.c
+++ b/source3/smbd/vfs.c
@@ -1196,6 +1196,13 @@ uint32_t smb_vfs_call_fs_capabilities(struct vfs_handle_struct *handle,
return handle->fns->fs_capabilities(handle, p_ts_res);
}
+NTSTATUS smb_vfs_call_get_dfs_referrals(struct vfs_handle_struct *handle,
+ struct dfs_GetDFSReferral *r)
+{
+ VFS_FIND(get_dfs_referrals);
+ return handle->fns->get_dfs_referrals(handle, r);
+}
+
SMB_STRUCT_DIR *smb_vfs_call_opendir(struct vfs_handle_struct *handle,
const char *fname, const char *mask,
uint32 attributes)