diff options
author | Roger Dingledine <arma@torproject.org> | 2012-01-16 21:20:46 -0500 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2012-01-16 21:20:46 -0500 |
commit | 1e923dd2fbdc0834b8fb3ba97b658f15a6d5f6b4 (patch) | |
tree | d66295a529c4cd6ad398329cd2e9ae59f36ce4ae /src/or/or.h | |
parent | 47aa491f9fbae38f71f96f50c4aec3f871c8419d (diff) | |
download | tor-1e923dd2fbdc0834b8fb3ba97b658f15a6d5f6b4.tar.gz tor-1e923dd2fbdc0834b8fb3ba97b658f15a6d5f6b4.zip |
fix crash bug in original feature4207 branch
PLURAL() assumes that the plural is the canonical name for the option,
so now it is.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/or/or.h b/src/or/or.h index cf4297978b..8681d49613 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3239,15 +3239,15 @@ typedef struct { * never mark as valid. */ /** @name AuthDir...CC * - * Lists of of country codes to mark as BadDir, BadExit, or Invalid, or to + * Lists of country codes to mark as BadDir, BadExit, or Invalid, or to * reject entirely. * * @{ */ - smartlist_t *AuthDirBadDirCC; - smartlist_t *AuthDirBadExitCC; - smartlist_t *AuthDirInvalidCC; - smartlist_t *AuthDirRejectCC; + smartlist_t *AuthDirBadDirCCs; + smartlist_t *AuthDirBadExitCCs; + smartlist_t *AuthDirInvalidCCs; + smartlist_t *AuthDirRejectCCs; /**@}*/ int AuthDirListBadDirs; /**< True iff we should list bad dirs, |