X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/581fa5c4999f82a176e39e4edad2990759c94f56..7f4fa1956ee087c272dd260feb6d7e1ef34d641b:/modules/m_resv.c?ds=inline diff --git a/modules/m_resv.c b/modules/m_resv.c index 50b7faf..c19d774 100644 --- a/modules/m_resv.c +++ b/modules/m_resv.c @@ -284,7 +284,7 @@ parse_resv(struct Client *source_p, const char *name, aconf->port = 0; DupString(aconf->name, name); DupString(aconf->passwd, reason); - dlinkAddAlloc(aconf, &resv_conf_list); + rb_dlinkAddAlloc(aconf, &resv_conf_list); if(temp_time > 0) { @@ -516,7 +516,7 @@ remove_resv(struct Client *source_p, const char *name) ilog(L_KLINE, "UR %s %s", get_oper_name(source_p), name); } /* already have ptr from the loop above.. */ - dlinkDestroy(ptr, &resv_conf_list); + rb_dlinkDestroy(ptr, &resv_conf_list); } free_conf(aconf);