projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdcadca
)
Avoid the r modifier for s/// (perl)
author
Richard Levitte
<levitte@openssl.org>
Thu, 14 Jan 2016 19:22:36 +0000
(20:22 +0100)
committer
Richard Levitte
<levitte@openssl.org>
Thu, 14 Jan 2016 19:51:47 +0000
(20:51 +0100)
It seems that the r modifier for s/// is fairly new. It's reported
not to exist in perl 5.10.1, so it's better to avoid it when
possible.
Reviewed-by: Tim Hudson <tjh@openssl.org>
util/mkdef.pl
patch
|
blob
|
history
diff --git
a/util/mkdef.pl
b/util/mkdef.pl
index 0ad1a2d3e3d0ca7f43c645e22882b0c3605795ac..a2cc12619b2a7ba31fcf4270e97d12b06ad30a40 100755
(executable)
--- a/
util/mkdef.pl
+++ b/
util/mkdef.pl
@@
-1572,7
+1572,7
@@
sub get_openssl_version()
while(<IN>) {
if (/OPENSSL_VERSION_TEXT\s+"OpenSSL (\d\.\d\.)(\d[a-z]*)(-| )/) {
my $suffix = $2;
-
my $baseversion = $1 =~ s/\./_/gr
;
+
(my $baseversion = $1) =~ s/\./_/g
;
close IN;
return ($baseversion."0", $baseversion.$suffix);
}