summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2018-08-20 21:18:03 +0000
committertb <>2018-08-20 21:18:03 +0000
commit8cefcfb47f9c75dfb784c61295c951f2908fec7e (patch)
tree1cd393b940b7666ba91736e18f0e56f3f86906b5
parentefe41477462f1293f6d7f4f286c1b33384dfe28c (diff)
downloadopenbsd-8cefcfb47f9c75dfb784c61295c951f2908fec7e.tar.gz
openbsd-8cefcfb47f9c75dfb784c61295c951f2908fec7e.tar.bz2
openbsd-8cefcfb47f9c75dfb784c61295c951f2908fec7e.zip
add two missing \n
-rw-r--r--src/regress/lib/libcrypto/wycheproof/wycheproof.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go
index 3fa08ba636..137892f9d3 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.10 2018/08/20 20:46:51 tb Exp $ */ 1/* $OpenBSD: wycheproof.go,v 1.11 2018/08/20 21:18:03 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2018 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -273,11 +273,11 @@ func runChaCha20Poly1305Test(iv_len int, key_len int, tag_len int, wt *wycheproo
273 } 273 }
274 274
275 if (sealedLen != C.size_t(maxOutLen)) { 275 if (sealedLen != C.size_t(maxOutLen)) {
276 fmt.Printf("FAIL: Test case %d (%q) - seal length mismatch: got %d, want %d", wt.TCID, wt.Comment, sealedLen, maxOutLen) 276 fmt.Printf("FAIL: Test case %d (%q) - seal length mismatch: got %d, want %d\n", wt.TCID, wt.Comment, sealedLen, maxOutLen)
277 return false 277 return false
278 } 278 }
279 if (openedLen != C.size_t(msgLen)) { 279 if (openedLen != C.size_t(msgLen)) {
280 fmt.Printf("FAIL: Test case %d (%q) - open length mismatch: got %d, want %d", wt.TCID, wt.Comment, openedLen, msgLen) 280 fmt.Printf("FAIL: Test case %d (%q) - open length mismatch: got %d, want %d\n", wt.TCID, wt.Comment, openedLen, msgLen)
281 return false 281 return false
282 } 282 }
283 283