mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
TOR_ISSPACE, not isspace.
svn:r4828
This commit is contained in:
parent
5f2eea29f7
commit
5d590861c4
@ -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;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user