[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r9819: typo in error message led to breaking the protocol. also poi (tor/trunk/src/or)
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] r9819: typo in error message led to breaking the protocol. also poi (tor/trunk/src/or)
- From: arma@xxxxxxxx
- Date: Wed, 14 Mar 2007 23:15:34 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Wed, 14 Mar 2007 23:15:41 -0400
- Reply-to: or-talk@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Author: arma
Date: 2007-03-14 23:15:34 -0400 (Wed, 14 Mar 2007)
New Revision: 9819
Modified:
tor/trunk/src/or/control.c
Log:
typo in error message led to breaking the protocol. also
pointed out by daejees.
Modified: tor/trunk/src/or/control.c
===================================================================
--- tor/trunk/src/or/control.c 2007-03-15 03:11:53 UTC (rev 9818)
+++ tor/trunk/src/or/control.c 2007-03-15 03:15:34 UTC (rev 9819)
@@ -1805,7 +1805,7 @@
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;
}
}