aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-12-07 19:49:18 +0000
committerRoger Dingledine <arma@torproject.org>2005-12-07 19:49:18 +0000
commit130d0e4d1db647398df1243a0330696fa62f4d70 (patch)
tree741e4cb9945e99ceda5b7cf928855d85d8f2bbe3 /src
parent4902ece6989b765f6ab0238168cfb0091ceb0bd1 (diff)
downloadtor-130d0e4d1db647398df1243a0330696fa62f4d70.tar
tor-130d0e4d1db647398df1243a0330696fa62f4d70.tar.gz
fix typo noticed by scrimbly
svn:r5522
Diffstat (limited to 'src')
-rw-r--r--src/common/compat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat.h b/src/common/compat.h
index 314477894..8231bc284 100644
--- a/src/common/compat.h
+++ b/src/common/compat.h
@@ -93,7 +93,7 @@ int tor_vsnprintf(char *str, size_t size, const char *format, va_list args);
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))