diff options
author | Peter Palfrader <peter@palfrader.org> | 2008-04-22 15:20:46 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2008-04-22 15:20:46 +0000 |
commit | 0cbecbe050cfae1ae3919615a5eafdfea738d63b (patch) | |
tree | b5baf4470867b8134d41ee4e9f1a851951652483 /src/or | |
parent | 1b9c06ab96709464b4ba8d934625783f0454e11f (diff) | |
download | tor-0cbecbe050cfae1ae3919615a5eafdfea738d63b.tar.gz tor-0cbecbe050cfae1ae3919615a5eafdfea738d63b.zip |
Fix a pair of comments
svn:r14405
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/or.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/or.h b/src/or/or.h index 7ede3c16d4..8c25064215 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1464,10 +1464,10 @@ typedef struct networkstatus_voter_info_t { * used by this voter. */ char *signature; /**< Signature from this voter. */ int signature_len; /**< Length of <b>signature</b> */ - unsigned int bad_signature : 1; /**< Set to true if we've verified the sig - * as good. */ - unsigned int good_signature : 1; /**< Set to true if we've tried to verify - * the sig, and we know it's bad. */ + unsigned int bad_signature : 1; /**< Set to true if we've tried to verify + * the sig, and we know it's bad. */ + unsigned int good_signature : 1; /**< Set to true if we've verified the sig + * as good. */ } networkstatus_voter_info_t; /** A common structure to hold a v3 network status vote, or a v3 network |