aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2001-08-03 21:09:21 +0000
committerBen Laurie <ben@openssl.org>2001-08-03 21:09:21 +0000
commit93d9121a775da2beb680d889929245309032fcc0 (patch)
treeabbcc298506fae098e71c55e2ee7db3338eb6e05
parent92dad6cc840cb2402b61fb4281deafd1179efe04 (diff)
downloadopenssl-93d9121a775da2beb680d889929245309032fcc0.tar.gz
Remove extra whitespace. Sorry.
-rw-r--r--crypto/evp/p_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/p_lib.c b/crypto/evp/p_lib.c
index 0c2c9a1cdd..1fd0d19aee 100644
--- a/crypto/evp/p_lib.c
+++ b/crypto/evp/p_lib.c
@@ -83,7 +83,7 @@ int EVP_PKEY_size(EVP_PKEY *pkey)
{
if (pkey == NULL)
return(0);
- #ifndef OPENSSL_NO_RSA
+#ifndef OPENSSL_NO_RSA
if (pkey->type == EVP_PKEY_RSA)
return(RSA_size(pkey->pkey.rsa));
else