projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6dc08dd
)
Missing "else".
author
Ulf Möller
<ulf@openssl.org>
Thu, 29 Apr 1999 13:37:45 +0000
(13:37 +0000)
committer
Ulf Möller
<ulf@openssl.org>
Thu, 29 Apr 1999 13:37:45 +0000
(13:37 +0000)
crypto/rsa/rsa_oaep_test.c
patch
|
blob
|
history
diff --git
a/crypto/rsa/rsa_oaep_test.c
b/crypto/rsa/rsa_oaep_test.c
index 588e7bac1c696a12eaf9b8f1578f34d4b7a71749..061c99a6c4df5b76e4f683cca539e51bdcf03435 100644
(file)
--- 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;