X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/7cdb0a09b9ba217d30d6e8c35654dc9cc6e3ae57..8e2ebdb80add54d46c9f7f058ad469d70ddf9457:/modules/m_accept.c?ds=inline diff --git a/modules/m_accept.c b/modules/m_accept.c index a26de88f..7fbf584a 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); }