X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/af81d5a0b09446188fd6f9c292b51519f2c1cedd..8e69bb4e903f428b14e2950cce9be39dc8ddd12c:/src/supported.c diff --git a/src/supported.c b/src/supported.c index 9dd8395..8066c7f 100644 --- a/src/supported.c +++ b/src/supported.c @@ -117,7 +117,7 @@ delete_isupport(const char *name) rb_dlink_node *ptr, *next_ptr; struct isupportitem *item; - DLINK_FOREACH_SAFE(ptr, next_ptr, isupportlist.head) + RB_DLINK_FOREACH_SAFE(ptr, next_ptr, isupportlist.head) { item = ptr->data; @@ -150,7 +150,7 @@ show_isupport(struct Client *client_p) extra_space += strlen(me.name) + 1 + strlen(form_str(RPL_ISUPPORT)); nchars = extra_space, nparams = 0, buf[0] = '\0'; - DLINK_FOREACH(ptr, isupportlist.head) + RB_DLINK_FOREACH(ptr, isupportlist.head) { item = ptr->data; value = (*item->func)(item->param);