summaryrefslogtreecommitdiffstats
path: root/apps/tsget.in
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-12-10 20:09:17 +0100
committerRichard Levitte <levitte@openssl.org>2018-12-10 20:09:17 +0100
commit07f434441e7ea385f975e8df8caa03e62222ca61 (patch)
tree3216dc0ea484c7307615bba0579eda1d19cc9e15 /apps/tsget.in
parentd1c87578a29b9b6506ff8c11bdf3e5d63f784965 (diff)
apps/tsget.in: use the full version in the user agent string
Fixes #7861 Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/7866)
Diffstat (limited to 'apps/tsget.in')
-rw-r--r--apps/tsget.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tsget.in b/apps/tsget.in
index 604b4caa40..d87ea4d654 100644
--- a/apps/tsget.in
+++ b/apps/tsget.in
@@ -47,7 +47,7 @@ sub create_curl {
$curl->setopt(CURLOPT_VERBOSE, 1) if $options{d};
$curl->setopt(CURLOPT_FAILONERROR, 1);
$curl->setopt(CURLOPT_USERAGENT,
- "OpenTSA tsget.pl/openssl-{- $config{version} -}");
+ "OpenTSA tsget.pl/openssl-{- $config{full_version} -}");
# Options for POST method.
$curl->setopt(CURLOPT_UPLOAD, 1);