diff options
author | Richard Levitte <levitte@openssl.org> | 2018-12-10 19:48:37 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2018-12-11 10:34:53 +0100 |
commit | 539ea812c713127bbc487f99760b237781fb871a (patch) | |
tree | a3a1b748900410779bdd3f8543f4481123eab535 /util/shlib_wrap.sh.in | |
parent | apps/tsget.in: use the full version in the user agent string (diff) | |
download | openssl-539ea812c713127bbc487f99760b237781fb871a.tar.xz openssl-539ea812c713127bbc487f99760b237781fb871a.zip |
Configuration: $config{shlib_version_number} -> $config{shlib_version}
This was forgotten in a few places
Fixes #7862
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7865)
Diffstat (limited to 'util/shlib_wrap.sh.in')
-rwxr-xr-x | util/shlib_wrap.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/shlib_wrap.sh.in b/util/shlib_wrap.sh.in index eac70ed972..fc0687d75e 100755 --- a/util/shlib_wrap.sh.in +++ b/util/shlib_wrap.sh.in @@ -12,7 +12,7 @@ . ($target{shlib_variant} || "") . ($target{shared_extension} || ".so"); $lib =~ s|\.\$\(SHLIB_VERSION_NUMBER\) - |.$config{shlib_version_number}|x; + |.$config{shlib_version}|x; return $lib; } ""; # Make sure no left over string sneaks its way into the script |