Make sure latest Perl versions don't interpret some generated C array as Perl

array code in the crypto/err/err_genc.pl script.

Submitted by: Lars Weber <3weber@informatik.uni-hamburg.de>
Reviewed by: Ralf s. Engelschall
This commit is contained in:
Ralf S. Engelschall
1999-02-14 13:21:52 +00:00
parent e3577ba07b
commit 6013fa8395
2 changed files with 5 additions and 1 deletions

View File

@@ -55,7 +55,7 @@ close(IN);
foreach (sort keys %out)
{
print "static ERR_STRING_DATA ${_}[]=\n\t{\n";
print "static ERR_STRING_DATA ${_}\[\]=\n\t{\n";
print $out{$_};
print "{0,NULL},\n";
print "\t};\n\n";