summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2019-06-30 13:33:39 +0200
committerJeremy Allison <jra@samba.org>2019-07-01 21:43:24 +0000
commit03690ec2180d10c6d0c01ed2d7392aa9f8d30c0b (patch)
tree710f0bbc762972c5121490fbd520a3b1dc6fe511
parenteb986786562d2551743e97f5cd59d59f574657ca (diff)
downloadsamba-03690ec2180d10c6d0c01ed2d7392aa9f8d30c0b.tar.gz
vfs_fruit: change default for "fruit:zero_file_id" to false
Now that we have reliable File-IDs, change the default for the option "zero_file_id" to false. Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r--WHATSNEW.txt1
-rw-r--r--source3/modules/vfs_fruit.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 3a5d978d6ee..7ba0dbeca13 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -110,6 +110,7 @@ smb.conf changes
-------------- ----------- -------
web port Removed
+ fruit:zero_file_id Changed default False
KNOWN ISSUES
diff --git a/source3/modules/vfs_fruit.c b/source3/modules/vfs_fruit.c
index ea97cb93b30..42beed2143f 100644
--- a/source3/modules/vfs_fruit.c
+++ b/source3/modules/vfs_fruit.c
@@ -2226,7 +2226,7 @@ static int init_fruit_config(vfs_handle_struct *handle)
config->aapl_zero_file_id =
lp_parm_bool(SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
- "zero_file_id", true);
+ "zero_file_id", false);
config->readdir_attr_rsize = lp_parm_bool(
SNUM(handle->conn), "readdir_attr", "aapl_rsize", true);