Missing "else".
authorUlf Möller <ulf@openssl.org>
Thu, 29 Apr 1999 13:37:45 +0000 (13:37 +0000)
committerUlf Möller <ulf@openssl.org>
Thu, 29 Apr 1999 13:37:45 +0000 (13:37 +0000)
crypto/rsa/rsa_oaep_test.c

index 588e7bac1c696a12eaf9b8f1578f34d4b7a71749..061c99a6c4df5b76e4f683cca539e51bdcf03435 100644 (file)
@@ -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;