diff options
author | Roger Dingledine <arma@torproject.org> | 2010-01-12 14:05:12 -0500 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2010-01-15 15:56:54 -0500 |
commit | 50e8210943db2cab3a04e23731969b07c366935c (patch) | |
tree | e822c13e83c52fb8696b4c815df918a1a8336c44 /src/or/dirserv.c | |
parent | 397f7c874f3123dcb84356cc95ed6b58b90c5546 (diff) | |
download | tor-50e8210943db2cab3a04e23731969b07c366935c.tar tor-50e8210943db2cab3a04e23731969b07c366935c.tar.gz |
trivial cleanups
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r-- | src/or/dirserv.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index b7f67132e..302461235 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -72,7 +72,7 @@ static int dirserv_add_extrainfo(extrainfo_t *ei, const char **msg); #define FP_INVALID 2 /**< Believed invalid. */ #define FP_REJECT 4 /**< We will not publish this router. */ #define FP_BADDIR 8 /**< We'll tell clients to avoid using this as a dir. */ -#define FP_BADEXIT 16 /**< We'll tell clients not to use this as an exit. */ +#define FP_BADEXIT 16 /**< We'll tell clients not to use this as an exit. */ #define FP_UNNAMED 32 /**< Another router has this name in fingerprint file. */ /** Encapsulate a nickname and an FP_* status; target of status_by_digest @@ -102,7 +102,7 @@ authdir_config_new(void) return list; } -/** Add the fingerprint <b>fp</b> for the nickname <b>nickname</b> to +/** Add the fingerprint <b>fp</b> for <b>nickname</b> to * the smartlist of fingerprint_entry_t's <b>list</b>. Return 0 if it's * new, or 1 if we replaced the old value. */ @@ -184,8 +184,7 @@ dirserv_add_own_fingerprint(const char *nickname, crypto_pk_env_t *pk) * file. The file format is line-based, with each non-blank holding one * nickname, some space, and a fingerprint for that nickname. On success, * replace the current fingerprint list with the new list and return 0. On - * failure, leave the current fingerprint list untouched, and - * return -1. */ + * failure, leave the current fingerprint list untouched, and return -1. */ int dirserv_load_fingerprint_file(void) { |