]> jfr.im git - irc/quakenet/newserv.git/blobdiff - authext/authext.c
CHANSERV: better batcher error handling for expired accounts/accounts with no email.
[irc/quakenet/newserv.git] / authext / authext.c
index b48c84e9da506f51f0a4470a6d55160b047ded76..7606832d9c9a8aabbe9dbb5981feb3847179a24f 100644 (file)
@@ -18,7 +18,7 @@ MODULE_VERSION("")
 CCASSERT(sizeof(unsigned long long) == sizeof(u_int64_t))
 
 #define authnamehash(x)   ((x)%AUTHNAMEHASHSIZE)
-#define authnamehashbyname(x) (crc32i(x)%AUTHNAMEHASHSIZE)
+#define authnamehashbyname(x) (irc_crc32i(x)%AUTHNAMEHASHSIZE)
 
 authname *authnametable[AUTHNAMEHASHSIZE];