Revert autojoin_opers patch
It causes interesting desyncs of account names when run for more than 2 weeks Revert "channel: refactorfe3c1c828e
and fix surrounding indentation" This reverts commit27b08207de
. Revert "src/channel: Fix for autojoin_opers segfault" This reverts commit8e1c8b7543
.
This commit is contained in:
parent
be2a7a772c
commit
755b88c783
|
@ -2013,18 +2013,10 @@ void user_join(struct Client * client_p, struct Client * source_p, const char *
|
||||||
source_p->tsinfo, source_p->info);
|
source_p->tsinfo, source_p->info);
|
||||||
|
|
||||||
/* Send away message to away-notify enabled clients. */
|
/* Send away message to away-notify enabled clients. */
|
||||||
|
if (client_p->user->away)
|
||||||
/*
|
|
||||||
* The following test fixes autojoin_opers in an auth block joining
|
|
||||||
* clients to channels from segfaulting the irc daemon.
|
|
||||||
* - Niichan
|
|
||||||
*/
|
|
||||||
if (client_p->user && client_p->user->away)
|
|
||||||
{
|
|
||||||
sendto_channel_local_with_capability_butone(client_p, ALL_MEMBERS, CLICAP_AWAY_NOTIFY, NOCAPS, chptr,
|
sendto_channel_local_with_capability_butone(client_p, ALL_MEMBERS, CLICAP_AWAY_NOTIFY, NOCAPS, chptr,
|
||||||
":%s!%s@%s AWAY :%s", client_p->name, client_p->username,
|
":%s!%s@%s AWAY :%s", client_p->name, client_p->username,
|
||||||
client_p->host, client_p->user->away);
|
client_p->host, client_p->user->away);
|
||||||
}
|
|
||||||
|
|
||||||
/* its a new channel, set +nt and burst. */
|
/* its a new channel, set +nt and burst. */
|
||||||
if(flags & CHFL_CHANOP)
|
if(flags & CHFL_CHANOP)
|
||||||
|
|
Loading…
Reference in New Issue