summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-12-22 09:52:56 +0000
committerRoger Dingledine <arma@torproject.org>2008-12-22 09:52:56 +0000
commitdf89748388c3c50f54f988d851626bbe77159d1e (patch)
treeea04c55a5adcb8d10ef95e272074fcd5c16c75a4
parent0f6514e0418ba925741255d22c462e90df5006e3 (diff)
downloadtor-df89748388c3c50f54f988d851626bbe77159d1e.tar.gz
tor-df89748388c3c50f54f988d851626bbe77159d1e.zip
fix typo noticed by wood
svn:r17726
-rw-r--r--src/or/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/command.c b/src/or/command.c
index f7eb60f39d..fa4189dc3b 100644
--- a/src/or/command.c
+++ b/src/or/command.c
@@ -578,7 +578,7 @@ command_process_netinfo_cell(cell_t *cell, or_connection_t *conn)
const char *next = decode_address_from_payload(&addr, cp, end-cp);
if (next == NULL) {
log_fn(LOG_PROTOCOL_WARN, LD_OR,
- "Bad ddress in netinfo cell; closing connection.");
+ "Bad address in netinfo cell; closing connection.");
connection_mark_for_close(TO_CONN(conn));
return;
}