Explorar el Código

TOR_ISSPACE, not isspace.

svn:r4828
Nick Mathewson hace 21 años
padre
commit
5d590861c4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/or/control.c

+ 1 - 1
src/or/control.c

@@ -1944,7 +1944,7 @@ connection_control_process_inbuf_v1(connection_t *conn)
    * recognize it.
    */
   cmd_len = 0;
-  while (cmd_len < data_len && !isspace(conn->incoming_cmd[cmd_len]))
+  while (cmd_len < data_len && !TOR_ISSPACE(conn->incoming_cmd[cmd_len]))
     ++cmd_len;
 
   /*