From: Richard Levitte Date: Mon, 10 Dec 2018 19:09:17 +0000 (+0100) Subject: apps/tsget.in: use the full version in the user agent string X-Git-Tag: openssl-3.0.0-alpha1~2708 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=07f434441e7ea385f975e8df8caa03e62222ca61;p=thirdparty%2Fopenssl.git apps/tsget.in: use the full version in the user agent string Fixes #7861 Reviewed-by: Paul Dale Reviewed-by: Matthias St. Pierre (Merged from https://github.com/openssl/openssl/pull/7866) --- diff --git a/apps/tsget.in b/apps/tsget.in index 604b4caa405..d87ea4d6548 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);