diff options
author | Roger Dingledine <arma@torproject.org> | 2003-06-24 21:34:19 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-06-24 21:34:19 +0000 |
commit | 23b1586c2640fc1163ace1f14793c25f71b947c7 (patch) | |
tree | b126726bb27113c6173418461efe1040eec58dbe /src/common | |
parent | d8af672bb6cb859e48eb39cee334d6dcf171518c (diff) | |
download | tor-23b1586c2640fc1163ace1f14793c25f71b947c7.tar tor-23b1586c2640fc1163ace1f14793c25f71b947c7.tar.gz |
clean up a broken comment in crypto.c
svn:r351
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/crypto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index 836701883..e3b24d704 100644 --- a/src/common/crypto.c +++ b/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; |