diff options
author | tb <> | 2022-11-18 18:32:14 +0000 |
---|---|---|
committer | tb <> | 2022-11-18 18:32:14 +0000 |
commit | 9c7e421fa26bb5dcca9cf2ae11ed37a6b592bc44 (patch) | |
tree | 28ad17f59f439c814f962439033629ef25eb664e /src/regress/lib | |
parent | 3a12e5fe21eaceb96473a7aaf9361f36f0f9b0f7 (diff) | |
download | openbsd-9c7e421fa26bb5dcca9cf2ae11ed37a6b592bc44.tar.gz openbsd-9c7e421fa26bb5dcca9cf2ae11ed37a6b592bc44.tar.bz2 openbsd-9c7e421fa26bb5dcca9cf2ae11ed37a6b592bc44.zip |
zap a stray semicolon
Diffstat (limited to 'src/regress/lib')
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/wycheproof.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go index d004ee619f..3bc6d037fa 100644 --- a/src/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/src/regress/lib/libcrypto/wycheproof/wycheproof.go | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: wycheproof.go,v 1.130 2022/11/17 19:07:52 tb Exp $ */ | 1 | /* $OpenBSD: wycheproof.go,v 1.131 2022/11/18 18:32:14 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2018,2019,2022 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2018,2019,2022 Theo Buehler <tb@openbsd.org> |
@@ -2005,7 +2005,7 @@ func runEdDSATest(pkey *C.EVP_PKEY, wt *wycheproofTestEdDSA) bool { | |||
2005 | if err != nil { | 2005 | if err != nil { |
2006 | log.Fatalf("Failed to decode Message %q: %v", wt.Msg, err) | 2006 | log.Fatalf("Failed to decode Message %q: %v", wt.Msg, err) |
2007 | } | 2007 | } |
2008 | msgLen := len(msg); | 2008 | msgLen := len(msg) |
2009 | if msgLen == 0 { | 2009 | if msgLen == 0 { |
2010 | msg = append(msg, 0) | 2010 | msg = append(msg, 0) |
2011 | } | 2011 | } |