Browse Source

Fix a pair of comments

svn:r14405
Peter Palfrader 17 years ago
parent
commit
0cbecbe050
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/or/or.h

+ 4 - 4
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