summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2007-03-15 03:15:34 +0000
committerRoger Dingledine <arma@torproject.org>2007-03-15 03:15:34 +0000
commitc995a369728adbe769f9251e2877bc650c532dd5 (patch)
tree52d4cbc79b88189204fe5b7f3fe432e7caacab3a /src
parent5b8adc7c9be90cb311ef19d88b02af49dda39ec6 (diff)
downloadtor-c995a369728adbe769f9251e2877bc650c532dd5.tar.gz
tor-c995a369728adbe769f9251e2877bc650c532dd5.zip
typo in error message led to breaking the protocol. also
pointed out by daejees. svn:r9819
Diffstat (limited to 'src')
-rw-r--r--src/or/control.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/control.c b/src/or/control.c
index 4784cb9092..8e3a2db601 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -1805,7 +1805,7 @@ handle_control_extendcircuit(control_connection_t *conn, uint32_t len,
log_info(LD_CONTROL,
"send_next_onion_skin failed; circuit marked for closing.");
circuit_mark_for_close(TO_CIRCUIT(circ), -err_reason);
- connection_write_str_to_buf("551 Couldn't send onion skinr\n", conn);
+ connection_write_str_to_buf("551 Couldn't send onion skin\r\n", conn);
goto done;
}
}