From: bluhm Date: Fri, 7 Apr 2017 17:33:45 +0000 (+0000) Subject: In ssl.h TLS 1.0 is called TLSv1. Adapt name in test to make it pass. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=d896c7452f59ae18a5d77b6153baca1b355ff13e;p=openbsd In ssl.h TLS 1.0 is called TLSv1. Adapt name in test to make it pass. OK jsing@ --- 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",