summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZiga Seilnacht <ziga.seilnacht@gmail.com>2009-12-22 14:06:31 +0100
committerJean-Paul Calderone <exarkun@divmod.com>2009-12-22 14:06:31 +0100
commitcccb6968530da1f2a251b5a2285f74e2f20f538f (patch)
tree86b1bd179af1b66acd58676e66dbd57bd4c70816
parentc7293bccb98f09b9d5dfcf5963b935faefe91895 (diff)
downloadpyopenssl-cccb6968530da1f2a251b5a2285f74e2f20f538f.tar.gz
Whitespace cleanup.
-rw-r--r--OpenSSL/crypto/crypto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSSL/crypto/crypto.c b/OpenSSL/crypto/crypto.c
index 1442b5a..8196be2 100644
--- a/OpenSSL/crypto/crypto.c
+++ b/OpenSSL/crypto/crypto.c
@@ -216,7 +216,7 @@ crypto_dump_privatekey(PyObject *spam, PyObject *args)
case X509_FILETYPE_TEXT:
rsa = EVP_PKEY_get1_RSA(pkey->pkey);
ret = RSA_print(bio, rsa, 0);
- RSA_free(rsa);
+ RSA_free(rsa);
break;
default:
@@ -509,8 +509,8 @@ crypto_load_pkcs7_data(PyObject *spam, PyObject *args)
if (!PyArg_ParseTuple(args, "is#:load_pkcs7_data", &type, &buffer, &len))
return NULL;
- /*
- * Try to read the pkcs7 data from the bio
+ /*
+ * Try to read the pkcs7 data from the bio
*/
bio = BIO_new_mem_buf(buffer, len);
switch (type)