X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/581fa5c4999f82a176e39e4edad2990759c94f56..b96058d185406b8532d05d76b9bc4b7cf7f0f50c:/modules/m_accept.c diff --git a/modules/m_accept.c b/modules/m_accept.c index a26de88..7fbf584 100644 --- a/modules/m_accept.c +++ b/modules/m_accept.c @@ -95,8 +95,8 @@ m_accept(struct Client *client_p, struct Client *source_p, int parc, const char continue; } - dlinkFindDestroy(target_p, &source_p->localClient->allow_list); - dlinkFindDestroy(source_p, &target_p->on_allow_list); + rb_dlinkFindDestroy(target_p, &source_p->localClient->allow_list); + rb_dlinkFindDestroy(source_p, &target_p->on_allow_list); } /* get the number of accepts they have */ @@ -208,8 +208,8 @@ build_nicklist(struct Client *source_p, char *addbuf, char *delbuf, const char * static void add_accept(struct Client *source_p, struct Client *target_p) { - dlinkAddAlloc(target_p, &source_p->localClient->allow_list); - dlinkAddAlloc(source_p, &target_p->on_allow_list); + rb_dlinkAddAlloc(target_p, &source_p->localClient->allow_list); + rb_dlinkAddAlloc(source_p, &target_p->on_allow_list); }