소스 검색

typo spotted by chris

svn:r3308
Nick Mathewson 21 년 전
부모
커밋
a6e587305f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/or/control.c

+ 1 - 1
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 {