]> jfr.im git - irc/quakenet/newserv.git/blobdiff - nick/nickhelpers.c
TRUSTS: require sqlite
[irc/quakenet/newserv.git] / nick / nickhelpers.c
index d4081ce66e79a8c98cdb84ec3278fc90aa175683..6cf065dd071b7191632b065da9d9ad651690ba95 100644 (file)
@@ -9,8 +9,8 @@
 
 #include <string.h>
 
-#define hosthash(x)       ((crc32i(x))%HOSTHASHSIZE)
-#define realnamehash(x)   ((crc32(x))%REALNAMEHASHSIZE)
+#define hosthash(x)       ((irc_crc32i(x))%HOSTHASHSIZE)
+#define realnamehash(x)   ((irc_crc32(x))%REALNAMEHASHSIZE)
 
 host *hosttable[HOSTHASHSIZE];
 realname *realnametable[REALNAMEHASHSIZE];