summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_fileid.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-14 13:59:09 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-16 15:16:58 +0100
commit554a89df0cf6d9832778e2913f9fe50b78baeedc (patch)
treecae6e672cde3f2382824eb6302065fe9e87055d9 /source3/modules/vfs_fileid.c
parent673ca5145c9c120cdb522096fd625662407f6f3d (diff)
downloadsamba-554a89df0cf6d9832778e2913f9fe50b78baeedc.tar.gz
samba-554a89df0cf6d9832778e2913f9fe50b78baeedc.tar.bz2
samba-554a89df0cf6d9832778e2913f9fe50b78baeedc.zip
s3:vfs_fileid: readd "fileid:algorithm" as option.
"fileid:mapping" is still supported as fallback. metze
Diffstat (limited to 'source3/modules/vfs_fileid.c')
-rw-r--r--source3/modules/vfs_fileid.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/modules/vfs_fileid.c b/source3/modules/vfs_fileid.c
index 8ab4ac3793..787a49f36b 100644
--- a/source3/modules/vfs_fileid.c
+++ b/source3/modules/vfs_fileid.c
@@ -188,10 +188,16 @@ static int fileid_connect(struct vfs_handle_struct *handle,
return -1;
}
- data->device_mapping_fn = fileid_device_mapping_fsid;
+ /*
+ * "fileid:mapping" is only here as fallback for old setups
+ * "fileid:algorithm" is the option new setups should use
+ */
algorithm = lp_parm_const_string(SNUM(handle->conn),
"fileid", "mapping",
"fsname");
+ algorithm = lp_parm_const_string(SNUM(handle->conn),
+ "fileid", "algorithm",
+ algorithm);
if (strcmp("fsname", algorithm) == 0) {
data->device_mapping_fn = fileid_device_mapping_fsname;
} else if (strcmp("fsid", algorithm) == 0) {