The cloaked IRC mask of a user is his visible mask, so the daemon has
to use it for generating the "one time" entries for the invite list of
the given channel.
Without this patch, ngIRCd records the real IRC mask which will never
match while the target client is "+x", and even worse, will disclose
the real mask on "MODE #channel +I" commands :-/
Bug reported by Cahata on #ngircd, thanks!
if (remember) {
/* We must remember this invite */
- if (!Channel_AddInvite(chan, Client_Mask(target), true))
+ if (!Channel_AddInvite(chan, Client_MaskCloaked(target),
+ true))
return CONNECTED;
}
}