From: Roger Dingledine Date: Fri, 11 Aug 2006 07:31:16 +0000 (+0000) Subject: fix typo, add explanatory comment X-Git-Tag: tor-0.1.2.1-alpha~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5647e5c7e6d572dccdc7882626c3d9748552ab91;p=thirdparty%2Ftor.git fix typo, add explanatory comment svn:r7026 --- diff --git a/src/or/dns.c b/src/or/dns.c index 4479d2b80b..54b784f7d7 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 9c34e325b4..7493dd8320 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);