diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/or/dirserv.c | 4 | ||||
-rw-r--r-- | src/or/or.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 640af1ddf0..b8665de77e 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -564,7 +564,7 @@ authdir_wants_to_reject_router(routerinfo_t *ri, const char **msg, return 0; } -/** True iff <b>a</b> is more severe than <b>b</b> */ +/** True iff <b>a</b> is more severe than <b>b</b>. */ static int WRA_MORE_SEVERE(was_router_added_t a, was_router_added_t b) { @@ -577,7 +577,7 @@ WRA_MORE_SEVERE(was_router_added_t a, was_router_added_t b) } } -/** As for dirserv_add_descriptor, but accepts multiple documents, and +/** As for dirserv_add_descriptor(), but accepts multiple documents, and * returns the most severe error that occurred for any one of them. */ was_router_added_t dirserv_add_multiple_descriptors(const char *desc, uint8_t purpose, diff --git a/src/or/or.h b/src/or/or.h index 0e5ea4e0fd..cea0cf15c9 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1186,7 +1186,7 @@ typedef struct control_connection_t { /** Number of bytes currently stored in incoming_cmd. */ uint32_t incoming_cmd_cur_len; /** A control command that we're reading from the inbuf, but which has not - * yet arrived completely. */ + * yet arrived completely. */ char *incoming_cmd; } control_connection_t; |