From bc83e3255b4b0ebe31d9f42ad57fbea0bc49e056 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 14 Nov 2007 15:12:09 +0000 Subject: Resolves: bug 345711 Description: migration : ignore idl switch value in 6.21 and earlier Fix Description: Have to assign the values directly to the array ref - not to a temp array ref --- ldap/admin/src/scripts/DSMigration.pm.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ldap/admin/src/scripts') diff --git a/ldap/admin/src/scripts/DSMigration.pm.in b/ldap/admin/src/scripts/DSMigration.pm.in index 84344152..e500bd26 100644 --- a/ldap/admin/src/scripts/DSMigration.pm.in +++ b/ldap/admin/src/scripts/DSMigration.pm.in @@ -143,8 +143,7 @@ sub getDBVERSION { my $line = ; close DBVERSION; chomp($line); - my @foo = split("/", $line); - $data = \@foo; + @{$data} = split("/", $line); return (); } -- cgit