]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_rehash.c
start making this compile
[irc/rqf/shadowircd.git] / modules / m_rehash.c
index f0da6c183d2f10d93d3463174a2465008f4028a4..1a88201e364d6e696b7c260fb232e1ab605935c9 100644 (file)
@@ -108,12 +108,12 @@ static void
 rehash_glines(struct Client *source_p)
 {
        struct ConfItem *aconf;
-       dlink_node *ptr, *next_ptr;
+       rb_dlink_node *ptr, *next_ptr;
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing G-lines",
                                get_oper_name(source_p));
 
-       DLINK_FOREACH_SAFE(ptr, next_ptr, glines.head)
+       RB_DLINK_FOREACH_SAFE(ptr, next_ptr, glines.head)
        {
                aconf = ptr->data;
 
@@ -126,13 +126,13 @@ static void
 rehash_pglines(struct Client *source_p)
 {
        struct gline_pending *glp_ptr;
-       dlink_node *ptr;
-       dlink_node *next_ptr;
+       rb_dlink_node *ptr;
+       rb_dlink_node *next_ptr;
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing pending glines",
                                get_oper_name(source_p));
 
-       DLINK_FOREACH_SAFE(ptr, next_ptr, pending_glines.head)
+       RB_DLINK_FOREACH_SAFE(ptr, next_ptr, pending_glines.head)
        {
                glp_ptr = ptr->data;
 
@@ -147,7 +147,7 @@ static void
 rehash_tklines(struct Client *source_p)
 {
        struct ConfItem *aconf;
-       dlink_node *ptr, *next_ptr;
+       rb_dlink_node *ptr, *next_ptr;
        int i;
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp klines",
@@ -155,7 +155,7 @@ rehash_tklines(struct Client *source_p)
 
        for(i = 0; i < LAST_TEMP_TYPE; i++)
        {
-               DLINK_FOREACH_SAFE(ptr, next_ptr, temp_klines[i].head)
+               RB_DLINK_FOREACH_SAFE(ptr, next_ptr, temp_klines[i].head)
                {
                        aconf = ptr->data;
 
@@ -169,7 +169,7 @@ static void
 rehash_tdlines(struct Client *source_p)
 {
        struct ConfItem *aconf;
-       dlink_node *ptr, *next_ptr;
+       rb_dlink_node *ptr, *next_ptr;
        int i;
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp dlines",
@@ -177,7 +177,7 @@ rehash_tdlines(struct Client *source_p)
 
        for(i = 0; i < LAST_TEMP_TYPE; i++)
        {
-               DLINK_FOREACH_SAFE(ptr, next_ptr, temp_dlines[i].head)
+               RB_DLINK_FOREACH_SAFE(ptr, next_ptr, temp_dlines[i].head)
                {
                        aconf = ptr->data;
 
@@ -191,13 +191,13 @@ static void
 rehash_txlines(struct Client *source_p)
 {
        struct ConfItem *aconf;
-       dlink_node *ptr;
-       dlink_node *next_ptr;
+       rb_dlink_node *ptr;
+       rb_dlink_node *next_ptr;
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp xlines",
                                get_oper_name(source_p));
 
-       DLINK_FOREACH_SAFE(ptr, next_ptr, xline_conf_list.head)
+       RB_DLINK_FOREACH_SAFE(ptr, next_ptr, xline_conf_list.head)
        {
                aconf = ptr->data;
 
@@ -213,8 +213,8 @@ static void
 rehash_tresvs(struct Client *source_p)
 {
        struct ConfItem *aconf;
-       dlink_node *ptr;
-       dlink_node *next_ptr;
+       rb_dlink_node *ptr;
+       rb_dlink_node *next_ptr;
        int i;
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp resvs",
@@ -232,7 +232,7 @@ rehash_tresvs(struct Client *source_p)
        }
        HASH_WALK_END
 
-       DLINK_FOREACH_SAFE(ptr, next_ptr, resv_conf_list.head)
+       RB_DLINK_FOREACH_SAFE(ptr, next_ptr, resv_conf_list.head)
        {
                aconf = ptr->data;
 
@@ -266,14 +266,14 @@ static void
 rehash_nickdelay(struct Client *source_p)
 {
        struct nd_entry *nd;
-       dlink_node *ptr;
-       dlink_node *safe_ptr;
+       rb_dlink_node *ptr;
+       rb_dlink_node *safe_ptr;
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL,
                             "%s is clearing the nick delay table",
                             get_oper_name(source_p));
 
-       DLINK_FOREACH_SAFE(ptr, safe_ptr, nd_list.head)
+       RB_DLINK_FOREACH_SAFE(ptr, safe_ptr, nd_list.head)
        {
                nd = ptr->data;