From: Uri Simchoni Date: Thu, 2 Mar 2017 10:56:25 +0000 (+0200) Subject: testparm: remove check for "ea support" in fruit shares X-Git-Tag: tdb-1.3.13~673 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ef7bd3b5b078702a9ef8ad92768c2d11b3214f5;p=thirdparty%2Fsamba.git testparm: remove check for "ea support" in fruit shares Now that ea support is not required for vfs_fruit, drop the check that it's enabled in shares using vfs_fruit. Signed-off-by: Uri Simchoni Reviewed-by: Ralph Boehme --- diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c index 3e80c39cf9d..7883bca135c 100644 --- a/source3/utils/testparm.c +++ b/source3/utils/testparm.c @@ -606,12 +606,6 @@ static void do_per_share_checks(int s) vfs_objects = lp_vfs_objects(s); if (vfs_objects && str_list_check(vfs_objects, "fruit")) { uses_fruit = true; - if (!lp_ea_support(s) && !lp_ea_support(-1)) { - fprintf(stderr, - "ERROR: Service \"%s\" uses vfs_fruit, but " - "that requires \"ea support = yes\".\n\n", - lp_servicename(talloc_tos(), s)); - } } else { doesnt_use_fruit = true; }