mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-23 14:40:51 +01:00
TOR_ISSPACE, not isspace.
svn:r4828
This commit is contained in:
parent
5f2eea29f7
commit
5d590861c4
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue