X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/762cc38cf9536053ea31085206508922ba524eaa..b798359b1709af5c53b56e89d9c8453fd6844e25:/extensions/ip_cloaking_old.c diff --git a/extensions/ip_cloaking_old.c b/extensions/ip_cloaking_old.c index 54e13c9..c87d7a2 100644 --- a/extensions/ip_cloaking_old.c +++ b/extensions/ip_cloaking_old.c @@ -9,7 +9,6 @@ #include "s_conf.h" #include "s_user.h" #include "s_serv.h" -#include "tools.h" #include "numeric.h" /* if you're modifying this module, you'll probably to change this */ @@ -94,7 +93,7 @@ do_host_cloak(const char *inbuf, char *outbuf, int ipmask) if (ipmask == 0) { - ircsnprintf(outbuf, HOSTLEN, "%s-%X%X", + rb_snprintf(outbuf, HOSTLEN, "%s-%X%X", ServerInfo.network_name, hosthash2, hosthash); len1 = strlen(outbuf); rest = strchr(inbuf, '.'); @@ -106,7 +105,7 @@ do_host_cloak(const char *inbuf, char *outbuf, int ipmask) strlcat(outbuf, rest, HOSTLEN); } else - ircsnprintf(outbuf, HOSTLEN, "%X%X.%s", + rb_snprintf(outbuf, HOSTLEN, "%X%X.%s", hosthash2, hosthash, ServerInfo.network_name); } @@ -160,7 +159,7 @@ check_new_user(void *vdata) source_p->umodes &= ~user_modes['h']; return; } - source_p->localClient->mangledhost = MyMalloc(HOSTLEN); + source_p->localClient->mangledhost = rb_malloc(HOSTLEN); if (!irccmp(source_p->orighost, source_p->sockhost)) do_host_cloak(source_p->orighost, source_p->localClient->mangledhost, 1); else