]> jfr.im git - irc/atheme/atheme.git/commitdiff
libathemecore/conf.c: sfree() does not exist in this branch, use free()
authorAaron Jones <redacted>
Sun, 28 Feb 2021 02:37:35 +0000 (02:37 +0000)
committerAaron Jones <redacted>
Sun, 28 Feb 2021 02:37:35 +0000 (02:37 +0000)
libathemecore/conf.c

index 53777212a6a432a30ed2acd0594c5ab1d4394570..cbb72f5d7a651aec5ba035d91d796fcebad85346 100644 (file)
@@ -948,10 +948,10 @@ bool conf_check(void)
 
        if (chansvs.hide_xop)
        {
-               sfree(mowgli_patricia_delete(global_template_dict,"VOP"));
-               sfree(mowgli_patricia_delete(global_template_dict,"HOP"));
-               sfree(mowgli_patricia_delete(global_template_dict,"AOP"));
-               sfree(mowgli_patricia_delete(global_template_dict,"SOP"));
+               free(mowgli_patricia_delete(global_template_dict,"VOP"));
+               free(mowgli_patricia_delete(global_template_dict,"HOP"));
+               free(mowgli_patricia_delete(global_template_dict,"AOP"));
+               free(mowgli_patricia_delete(global_template_dict,"SOP"));
        }
        else
        {