diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-01-05 06:48:39 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-01-05 06:48:39 +0000 |
commit | a6e587305fd713f24b8de71e3e8145a5b8003773 (patch) | |
tree | 42b6e2dfc45806b9149fbd95eb070cbbaf56c77a /src/or/control.c | |
parent | dcd228585db1224d9af9b37beffe5b36cb8bff74 (diff) | |
download | tor-a6e587305fd713f24b8de71e3e8145a5b8003773.tar.gz tor-a6e587305fd713f24b8de71e3e8145a5b8003773.zip |
typo spotted by chris
svn:r3308
Diffstat (limited to 'src/or/control.c')
-rw-r--r-- | src/or/control.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |