summaryrefslogtreecommitdiff
path: root/regress/lib
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2017-04-07 17:33:46 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2017-04-07 17:33:46 +0000
commit1c1bda2c465fe5182716aaf2295b2cf7259c1a42 (patch)
tree617750f9e49c91b474bffdbd4f065385f21dba6a /regress/lib
parentea0b71de156e2d8555cad515281952178dee1883 (diff)
In ssl.h TLS 1.0 is called TLSv1. Adapt name in test to make it pass.
OK jsing@
Diffstat (limited to 'regress/lib')
-rw-r--r--regress/lib/libtls/gotls/tls.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/lib/libtls/gotls/tls.go b/regress/lib/libtls/gotls/tls.go
index 41b7d19a8bf..9b42b0aafcc 100644
--- a/regress/lib/libtls/gotls/tls.go
+++ b/regress/lib/libtls/gotls/tls.go
@@ -43,7 +43,7 @@ const (
)
var protocolNames = map[ProtocolVersion]string{
- ProtocolTLSv10: "TLSv1.0",
+ ProtocolTLSv10: "TLSv1",
ProtocolTLSv11: "TLSv1.1",
ProtocolTLSv12: "TLSv1.2",
ProtocolsAll: "all",