From 191a585342a7221f0d4548061e442b53aa89e1f2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Thu, 29 Apr 1999 13:37:45 +0000 Subject: [PATCH] Missing "else". --- crypto/rsa/rsa_oaep_test.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crypto/rsa/rsa_oaep_test.c b/crypto/rsa/rsa_oaep_test.c index 588e7bac1c..061c99a6c4 100644 --- a/crypto/rsa/rsa_oaep_test.c +++ b/crypto/rsa/rsa_oaep_test.c @@ -272,8 +272,7 @@ int main() printf("OAEP decryption (encrypted data) failed!\n"); err=1; } - - if (memcmp(ctext, ctext_ex, num) == 0) + else if (memcmp(ctext, ctext_ex, num) == 0) { printf("OAEP test vector %d passed!\n", v); goto next; -- 2.34.1