]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_rehash.c
.cvsignore files removed, SVN-Access replaced by Mercurial-Access
[irc/rqf/shadowircd.git] / modules / m_rehash.c
index b117b1c653f8db6e8a1a12f7f6d564ec27aa3961..672e5b7b93d68bd14357a9c56e812d4903ef978b 100644 (file)
@@ -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);
        }
 }