take out assignment in conditional because windows is not happy about it

This commit is contained in:
Thom Wiggers 2019-02-27 17:08:59 +01:00
父節點 ea19211d21
當前提交 58aba49ca2
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 001BB0A7CE26E363

查看文件

@ -114,9 +114,9 @@ static int test_wrong_pk(void) {
// By relying on m == sm we prevent having to allocate CRYPTO_BYTES
// twice
if (!(returncode = crypto_sign_open(sm, &mlen, sm, smlen, pk2))) {
printf("ERROR Signature did verify correctly under wrong public "
"key!\n");
returncode = crypto_sign_open(sm, &mlen, sm, smlen, pk2);
if (!returncode) {
printf("ERROR Signature did verify correctly under wrong public key!\n");
if (returncode > 0) {
puts("ERROR return code should be < 0");
}