aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1999-02-14 13:21:52 +0000
committerRalf S. Engelschall <rse@openssl.org>1999-02-14 13:21:52 +0000
commit6013fa839537b820c0a19d77344dc03392174a8b (patch)
tree570d230919deed68a63af5adb1db84c78470e42d /crypto/err
parente3577ba07bcb08da623f80f4a4f5ea29edf12fc6 (diff)
downloadopenssl-6013fa839537b820c0a19d77344dc03392174a8b.tar.gz
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
Diffstat (limited to 'crypto/err')
-rw-r--r--crypto/err/err_genc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/err/err_genc.pl b/crypto/err/err_genc.pl
index 5ebfa1a15e..21f1b9bd9d 100644
--- a/crypto/err/err_genc.pl
+++ b/crypto/err/err_genc.pl
@@ -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";