helpops: handle cleaning up remote opers from the helpops list

This commit is contained in:
William Pitcock 2016-09-16 12:56:18 -05:00
parent a4840ff1d8
commit 8093dc5fb7

View file

@ -160,10 +160,25 @@ h_hdl_new_remote_user(struct Client *client_p)
static void
h_hdl_client_exit(hook_data_client_exit *hdata)
{
if (MyClient(hdata->target) && IsPerson(hdata->target))
{
if (hdata->target->umodes & UMODE_HELPOPS)
rb_dlinkFindDestroy(hdata->target, &helper_list);
}
else if (IsServer(hdata->target))
{
rb_dlink_node *nptr;
RB_DLINK_FOREACH(nptr, hdata->target->serv->users.head)
{
struct Client *client_p = nptr->data;
if (client_p->umodes & UMODE_HELPOPS)
rb_dlinkFindDestroy(client_p, &helper_list);
}
}
}
static void
h_hdl_umode_changed(hook_data_umode_changed *hdata)