From 5647e5c7e6d572dccdc7882626c3d9748552ab91 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 11 Aug 2006 07:31:16 +0000 Subject: [PATCH] fix typo, add explanatory comment svn:r7026 --- src/or/dns.c | 2 +- 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 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);