diff options
author | Günther Deschner <gd@samba.org> | 2010-03-18 15:12:07 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-03-18 15:12:07 +0100 |
commit | a949c70ed821ea18dfd2e7218255638823c8deea (patch) | |
tree | 1dfd9eafebcbd73bd3132974d1568249529a880f /selftest/target | |
parent | 05cad2ea2f0963e7845b451d97830528c86e2cda (diff) | |
download | samba-a949c70ed821ea18dfd2e7218255638823c8deea.tar.gz samba-a949c70ed821ea18dfd2e7218255638823c8deea.tar.bz2 samba-a949c70ed821ea18dfd2e7218255638823c8deea.zip |
s3-selftest: fix Samba3.pm provisioning after uid/gid changes.
Guenther
Diffstat (limited to 'selftest/target')
-rw-r--r-- | selftest/target/Samba3.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/selftest/target/Samba3.pm b/selftest/target/Samba3.pm index a3faafc984..18e3483d32 100644 --- a/selftest/target/Samba3.pm +++ b/selftest/target/Samba3.pm @@ -549,9 +549,9 @@ sub provision($$$$$$) ## create a test account ## - my $max_uid, $max_gid; - my $uid_nobody, $uid_root; - my $gid_nobody, $gid_nogroup, $gid_root; + my ($max_uid, $max_gid); + my ($uid_nobody, $uid_root); + my ($gid_nobody, $gid_nogroup, $gid_root); if ($unix_uid < 0xffff - 2) { $max_uid = 0xffff; |