X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/8aba962d4307746f8eca05d56c9ea34c370332b9..af81d5a0b09446188fd6f9c292b51519f2c1cedd:/src/monitor.c?ds=sidebyside diff --git a/src/monitor.c b/src/monitor.c index 8456d6f..4feca72 100644 --- a/src/monitor.c +++ b/src/monitor.c @@ -103,7 +103,7 @@ monitor_signon(struct Client *client_p) if(monptr == NULL) return; - ircsnprintf(buf, sizeof(buf), "%s!%s@%s", + rb_snprintf(buf, sizeof(buf), "%s!%s@%s", client_p->name, client_p->username, client_p->host); sendto_monitor(monptr, form_str(RPL_MONONLINE), me.name, "*", buf); @@ -133,7 +133,7 @@ void clear_monitor(struct Client *client_p) { struct monitor *monptr; - dlink_node *ptr, *next_ptr; + rb_dlink_node *ptr, *next_ptr; DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->localClient->monitor_list.head) { @@ -142,8 +142,8 @@ clear_monitor(struct Client *client_p) /* we leave the actual entry around with no users, itll be * cleaned up periodically by cleanup_monitor() --anfl */ - dlinkFindDestroy(client_p, &monptr->users); - free_dlink_node(ptr); + rb_dlinkFindDestroy(client_p, &monptr->users); + free_rb_dlink_node(ptr); } client_p->localClient->monitor_list.head = client_p->localClient->monitor_list.tail = NULL; @@ -164,7 +164,7 @@ cleanup_monitor(void *unused) { next_ptr = ptr->hnext; - if(!dlink_list_length(&ptr->users)) + if(!rb_dlink_list_length(&ptr->users)) { if(last_ptr) last_ptr->hnext = next_ptr;