mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-01 10:59:55 +00:00
43d1f3cc8d
Omitting % and @ on hash and array names is no longer permitted Really old Perl let you omit the @ on array names and the % on hash names in some spots. This has issued a deprecation warning since Perl 5.0, and is no longer permitted. With hat: perl@ Sponsored by: Absolight
20 lines
369 B
Plaintext
20 lines
369 B
Plaintext
--- dis/data/create-tables-5.orig 1996-01-04 17:20:40 UTC
|
|
+++ dis/data/create-tables-5
|
|
@@ -38,7 +38,7 @@ while (<ENTITIES>) {
|
|
@last_a = @a;
|
|
|
|
}
|
|
-dbmclose (entities);
|
|
+dbmclose (%entities);
|
|
close (ENTITIES);
|
|
|
|
open (SITES, "./sites");
|
|
@@ -53,6 +53,6 @@ while (<SITES>) {
|
|
$sites{$key} = $a[1];
|
|
}
|
|
}
|
|
-dbmclose (sites);
|
|
+dbmclose (%sites);
|
|
close (ENTITIES);
|
|
|