diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-01-07 12:50:10 -0800 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-01-07 12:50:10 -0800 |
commit | 8d6aafbb4a7f4f9748b88f5ce16675900559149e (patch) | |
tree | f021a2b87758af50b963c369cdb4975de979cdb7 /src/or | |
parent | be841f77aaa818f445d5b9a5e2eca6aa7ce4f0b6 (diff) | |
parent | ce5406b71aa504a84f4012b8442342496bc71aa9 (diff) | |
download | tor-8d6aafbb4a7f4f9748b88f5ce16675900559149e.tar.gz tor-8d6aafbb4a7f4f9748b88f5ce16675900559149e.zip |
Merge remote-tracking branch 'teor/comments-20151213'
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/main.c | 2 | ||||
-rw-r--r-- | src/or/or.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/or/main.c b/src/or/main.c index c8b1283974..0ab8f10a4b 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1301,7 +1301,7 @@ static periodic_event_item_t periodic_events[] = { /* These are pointers to members of periodic_events[] that are used to * implement particular callbacks. We keep them separate here so that we * can access them by name. We also keep them inside periodic_events[] - * so that we can implement "reset all timers" in a reasaonable way. */ + * so that we can implement "reset all timers" in a reasonable way. */ static periodic_event_item_t *check_descriptor_event=NULL; static periodic_event_item_t *fetch_networkstatus_event=NULL; static periodic_event_item_t *launch_descriptor_fetches_event=NULL; diff --git a/src/or/or.h b/src/or/or.h index 89c539817f..6b5bd86761 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2333,7 +2333,7 @@ typedef struct microdesc_t { curve25519_public_key_t *onion_curve25519_pkey; /** Ed25519 identity key, if included. */ ed25519_public_key_t *ed25519_identity_pkey; - /** As routerinfo_t.ipv6_add */ + /** As routerinfo_t.ipv6_addr */ tor_addr_t ipv6_addr; /** As routerinfo_t.ipv6_orport */ uint16_t ipv6_orport; @@ -2351,7 +2351,7 @@ typedef struct microdesc_t { * Specifically, a node_t is a Tor router as we are using it: a router that * we are considering for circuits, connections, and so on. A node_t is a * thin wrapper around the routerstatus, routerinfo, and microdesc for a - * single wrapper, and provides a consistent interface for all of them. + * single router, and provides a consistent interface for all of them. * * Also, a node_t has mutable state. While a routerinfo, a routerstatus, * and a microdesc have[*] only the information read from a router |