[or-cvs] TOR_ISSPACE, not isspace.

Nick Mathewson nickm at seul.org
Wed Aug 24 02:20:34 UTC 2005


Update of /home/or/cvsroot/tor/src/or
In directory moria:/tmp/cvs-serv29546/src/or

Modified Files:
	control.c 
Log Message:
TOR_ISSPACE, not isspace.

Index: control.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/control.c,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -d -r1.124 -r1.125
--- control.c	22 Aug 2005 00:18:45 -0000	1.124
+++ control.c	24 Aug 2005 02:20:31 -0000	1.125
@@ -1944,7 +1944,7 @@
    * 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;
 
   /*



More information about the tor-commits mailing list