I Think I found a bug when STANDALONE is defined on hash.c
I hope I'm not missing something here...
(Please cc me the replies)


@@ -63,7 +63,7 @@
                                   if not enough memory */
 # define xfree free
 # define countof(x) (sizeof (x) / sizeof ((x)[0]))
-# define TOLOWER(x) ('A' <= (x) && (x) <= 'Z' ? (x) - 32 : (x))
+# define TOLOWER(x) ('A' <= (x) && (x) <= 'Z' ? (x) + 32 : (x))
 # define PARAMS(x) x
 #endif


Reply via email to