From 714954b8f408743898fc6c686f6663ff68b05dfc Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 24 Jun 2003 21:34:19 +0000 Subject: [PATCH] clean up a broken comment in crypto.c svn:r351 --- trunk/src/common/crypto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trunk/src/common/crypto.c b/trunk/src/common/crypto.c index 8367018839..e3b24d7043 100644 --- a/trunk/src/common/crypto.c +++ b/trunk/src/common/crypto.c @@ -366,8 +366,8 @@ int crypto_pk_write_public_key_to_string(crypto_pk_env_t *env, char **dest, int b = BIO_new(BIO_s_mem()); /* Create a memory BIO */ /* Now you can treat b as if it were a file. Just use the - * * PEM_*_bio_* functions instead of the non-bio variants. - * */ + * PEM_*_bio_* functions instead of the non-bio variants. + */ if(!PEM_write_bio_RSAPublicKey(b, (RSA *)env->key)) return -1;