From 314b59fbeff1fc788a8841c58defd530bd551261 Mon Sep 17 00:00:00 2001 From: Douglas Bagnall Date: Sat, 7 Dec 2019 22:56:00 +1300 Subject: [PATCH] selftest/s4: remove illegal function signature The character ':' has no meaning in function signatures. Perhaps ';' was intended, which would have marked the later arguments as optional -- which is the default with no signature. All callers always provide all the arguments anyway. Signed-off-by: Douglas Bagnall Reviewed-by: Gary Lockyer Reviewed-by: Andrew Bartlett --- selftest/target/Samba4.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selftest/target/Samba4.pm b/selftest/target/Samba4.pm index e1e3af16e37..3fd70db4570 100755 --- a/selftest/target/Samba4.pm +++ b/selftest/target/Samba4.pm @@ -394,7 +394,7 @@ sub get_cmd_env_vars # Sets up a forest trust namespace. # (Note this is different to kernel namespaces, setup by the # USE_NAMESPACES=1 option) -sub setup_namespaces($$:$$) +sub setup_namespaces { my ($self, $localenv, $upn_array, $spn_array) = @_; -- 2.34.1