[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] fix typo noticed by scrimbly
Update of /home2/or/cvsroot/tor/src/common
In directory moria:/home/arma/work/onion/cvs/tor/src/common
Modified Files:
compat.h
Log Message:
fix typo noticed by scrimbly
Index: compat.h
===================================================================
RCS file: /home2/or/cvsroot/tor/src/common/compat.h,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- compat.h 25 Oct 2005 07:05:03 -0000 1.38
+++ compat.h 7 Dec 2005 19:49:18 -0000 1.39
@@ -93,7 +93,7 @@
const void *tor_memmem(const void *haystack, size_t hlen, const void *needle,
size_t nlen);
-#define TOR_ISAPLHA(c) isalpha((int)(unsigned char)(c))
+#define TOR_ISALPHA(c) isalpha((int)(unsigned char)(c))
#define TOR_ISALNUM(c) isalnum((int)(unsigned char)(c))
#define TOR_ISSPACE(c) isspace((int)(unsigned char)(c))
#define TOR_ISXDIGIT(c) isxdigit((int)(unsigned char)(c))