diff options
author | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2015-11-23 18:59:11 +1100 |
---|---|---|
committer | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2015-11-23 18:59:11 +1100 |
commit | 84d1373ba075febd5c362701a4dfee66ca9a5c19 (patch) | |
tree | 1c7682ee584f9539aef5d45c3e26d4eaacd9fe42 /src/common | |
parent | 604d3ee48d5a407e525045138d45d40943b0eff6 (diff) | |
download | tor-84d1373ba075febd5c362701a4dfee66ca9a5c19.tar.gz tor-84d1373ba075febd5c362701a4dfee66ca9a5c19.zip |
Fix typo in comment on crypto_add_spaces_to_fp
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/crypto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index f5f9bbef0d..80345d430c 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -1332,7 +1332,7 @@ crypto_pk_get_all_digests(crypto_pk_t *pk, digests_t *digests_out) } /** Copy <b>in</b> to the <b>outlen</b>-byte buffer <b>out</b>, adding spaces - * every four spaces. */ + * every four characters. */ void crypto_add_spaces_to_fp(char *out, size_t outlen, const char *in) { |