diff options
| author | tb <> | 2018-08-20 21:18:03 +0000 | 
|---|---|---|
| committer | tb <> | 2018-08-20 21:18:03 +0000 | 
| commit | 00568be0dadbe68d2f0b0d1ce2a4594bc6c6ad71 (patch) | |
| tree | 1cd393b940b7666ba91736e18f0e56f3f86906b5 /src | |
| parent | 482e734c2daa07e5c21361527e0e52167cebb2c4 (diff) | |
| download | openbsd-00568be0dadbe68d2f0b0d1ce2a4594bc6c6ad71.tar.gz openbsd-00568be0dadbe68d2f0b0d1ce2a4594bc6c6ad71.tar.bz2 openbsd-00568be0dadbe68d2f0b0d1ce2a4594bc6c6ad71.zip | |
add two missing \n
Diffstat (limited to 'src')
| -rw-r--r-- | src/regress/lib/libcrypto/wycheproof/wycheproof.go | 6 | 
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 | ||
