X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/9f6c335332cb357b4bf5f991387087f907f6e55c..ca89e98e0309a81155c0690cf0a516f75e285929:/modules/m_rehash.c diff --git a/modules/m_rehash.c b/modules/m_rehash.c index b117b1c..672e5b7 100644 --- a/modules/m_rehash.c +++ b/modules/m_rehash.c @@ -36,7 +36,7 @@ #include "res.h" #include "s_conf.h" #include "s_newconf.h" -#include "s_log.h" +#include "logger.h" #include "send.h" #include "msg.h" #include "parse.h" @@ -136,9 +136,9 @@ rehash_pglines(struct Client *source_p) { glp_ptr = ptr->data; - MyFree(glp_ptr->reason1); - MyFree(glp_ptr->reason2); - MyFree(glp_ptr); + rb_free(glp_ptr->reason1); + rb_free(glp_ptr->reason2); + rb_free(glp_ptr); rb_dlinkDestroy(ptr, &pending_glines); } }