summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2018-08-26 17:35:40 +0000
committertb <>2018-08-26 17:35:40 +0000
commit61d5fc0435582bb13dda9052c4ad758c3c1cc569 (patch)
tree7ece537cb72a96723e3213ff7ad88cf4ddcedec9 /src
parent62167690a0584e5f7bb11061c8d8e85864de05db (diff)
downloadopenbsd-61d5fc0435582bb13dda9052c4ad758c3c1cc569.tar.gz
openbsd-61d5fc0435582bb13dda9052c4ad758c3c1cc569.tar.bz2
openbsd-61d5fc0435582bb13dda9052c4ad758c3c1cc569.zip
Remove some redundant info from log.Fatalf
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/wycheproof/wycheproof.go4
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 eb87319aa9..dbe4f0272e 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.21 2018/08/26 17:34:40 tb Exp $ */ 1/* $OpenBSD: wycheproof.go,v 1.22 2018/08/26 17:35:40 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 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
@@ -256,7 +256,7 @@ func checkChaCha20Poly1305Open(ctx *C.EVP_AEAD_CTX, iv []byte, ivLen int, aad []
256 if (bytes.Equal(openedMsg, msg)) || wt.Result == "invalid" { 256 if (bytes.Equal(openedMsg, msg)) || wt.Result == "invalid" {
257 success = true 257 success = true
258 } else { 258 } else {
259 fmt.Printf("FAIL: Test case %d (%q) - EVP_AEAD_CTX_open() = %d, msg match: %t; want %v\n", wt.TCID, wt.Comment, int(openRet), bytes.Equal(openedMsg, msg), wt.Result) 259 fmt.Printf("FAIL: Test case %d (%q) - msg match: %t; want %v\n", wt.TCID, wt.Comment, bytes.Equal(openedMsg, msg), wt.Result)
260 } 260 }
261 return success 261 return success
262} 262}