diff options
author | Roger Dingledine <arma@torproject.org> | 2006-08-11 07:31:16 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-08-11 07:31:16 +0000 |
commit | 5647e5c7e6d572dccdc7882626c3d9748552ab91 (patch) | |
tree | 9b7d45fd6e9df5546fd00e17596e0e2ef4cff903 | |
parent | 42a5d7a4ba0c3c70d77efcbd1146f498a5a571d0 (diff) | |
download | tor-5647e5c7e6d572dccdc7882626c3d9748552ab91.tar tor-5647e5c7e6d572dccdc7882626c3d9748552ab91.tar.gz |
fix typo, add explanatory comment
svn:r7026
-rw-r--r-- | src/or/dns.c | 2 | ||||
-rw-r--r-- | src/or/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index 4479d2b80..54b784f7d 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -8,7 +8,7 @@ const char dns_c_id[] = /** * \file dns.c * \brief Implements a local cache for DNS results for Tor servers. - * We provide two asynchrounous backend implementations: + * We provide two asynchronous backend implementations: * 1) A farm of 'DNS worker' threads or processes to perform DNS lookups for * onion routers and cache the results. * 2) A wrapper around Adam Langley's eventdns.c code, to send requests diff --git a/src/or/main.c b/src/or/main.c index 9c34e325b..7493dd832 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2143,7 +2143,7 @@ tor_main(int argc, char *argv[]) case CMD_VERIFY_CONFIG: printf("Configuration was valid\n"); break; - case CMD_RUN_UNITTESTS: + case CMD_RUN_UNITTESTS: /* only set by test.c */ default: log_warn(LD_BUG,"Illegal command number %d: internal error.", get_options()->command); |