From: Nick Mathewson Date: Wed, 5 Jan 2005 06:48:39 +0000 (+0000) Subject: typo spotted by chris X-Git-Tag: tor-0.1.0.1-rc~506 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6e587305fd713f24b8de71e3e8145a5b8003773;p=thirdparty%2Ftor.git typo spotted by chris svn:r3308 --- diff --git a/src/or/control.c b/src/or/control.c index 37ca21f4c1..13954adae8 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -407,7 +407,7 @@ handle_control_signal(connection_t *conn, uint16_t len, { if (len != 1) { send_control_error(conn, ERR_SYNTAX, - "Body of SIGNAL command too long or two short."); + "Body of SIGNAL command too long or too short."); } else if (control_signal_act((uint8_t)body[0]) < 0) { send_control_error(conn, ERR_SYNTAX, "Unrecognized signal number."); } else {