From: Ulf Möller Date: Thu, 29 Apr 1999 13:37:45 +0000 (+0000) Subject: Missing "else". X-Git-Tag: OpenSSL_0_9_3beta1~202 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=191a585342a7221f0d4548061e442b53aa89e1f2 Missing "else". --- 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;