0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-05 18:18:35 +02:00

authd: fix compile error

This commit is contained in:
Elizabeth Myers 2016-04-01 02:42:50 -05:00
parent e158281056
commit 7372553dd6

View file

@ -421,7 +421,6 @@ authd_decide_client(struct Client *client_p, const char *ident, const char *host
client_p->preClient->authd_reason = (reason == NULL ? NULL : rb_strdup(reason));
rb_dictionary_delete(cid_clients, RB_UINT_TO_POINTER(client_p->preClient->authd_cid));
client_p->preClient->authd_cid = 0;
/*
@ -451,7 +450,7 @@ authd_abort_client(struct Client *client_p)
rb_helper_write(authd_helper, "E %x", client_p->preClient->authd_cid);
/* XXX should we blindly allow like this? */
authd_decide_client(client_p, parv[2], parv[3], true, '\0', NULL, NULL);
authd_decide_client(client_p, "*", "*", true, '\0', NULL, NULL);
client_p->preClient->authd_cid = 0;
}