From: Noel Power Date: Fri, 27 Nov 2020 12:01:49 +0000 (+0000) Subject: s3/script/tests: Fix 'Unrecognized option(s) passed to mkpath()' error X-Git-Tag: samba-4.14.0rc1~528 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f5a7f11b7732c3efb511e68f6b9d434d59bb3e8;p=thirdparty%2Fsamba.git s3/script/tests: Fix 'Unrecognized option(s) passed to mkpath()' error 'keep_root' is an unrecognised option for make_path/mkpath BUG: https://bugzilla.samba.org/show_bug.cgi?id=14581 Signed-off-by: Noel Power Reviewed-by: Jeremy Allison --- diff --git a/source3/script/tests/test_smbclient_tarmode.pl b/source3/script/tests/test_smbclient_tarmode.pl index 877eec45cc8..d638ae5ac4b 100755 --- a/source3/script/tests/test_smbclient_tarmode.pl +++ b/source3/script/tests/test_smbclient_tarmode.pl @@ -918,7 +918,7 @@ sub reset_remote { # remove_tree($LOCALPATH . '/'. $DIR); # make_path($LOCALPATH . '/'. $DIR); remove_tree($LOCALPATH, {keep_root => 1}); - make_path($LOCALPATH, {keep_root => 1}); + make_path($LOCALPATH); } =head3 C