mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-12 01:40:27 +00:00
Show allowed channel types in ISUPPORT(005) numeric only
Don't show the static list of all possibly available channel types ... Closes #273.
This commit is contained in:
parent
bc22f41c51
commit
4b7e8db418
@ -1565,7 +1565,8 @@ IRC_Send_ISUPPORT(CLIENT * Client)
|
||||
Conf_Network))
|
||||
return DISCONNECTED;
|
||||
if (!IRC_WriteStrClient(Client, RPL_ISUPPORT1_MSG, Client_ID(Client),
|
||||
CHANTYPES, CHANTYPES, Conf_MaxJoins))
|
||||
Conf_AllowedChannelTypes, Conf_AllowedChannelTypes,
|
||||
Conf_MaxJoins))
|
||||
return DISCONNECTED;
|
||||
return IRC_WriteStrClient(Client, RPL_ISUPPORT2_MSG, Client_ID(Client),
|
||||
CHANNEL_NAME_LEN - 1, Conf_MaxNickLength - 1,
|
||||
|
Loading…
Reference in New Issue
Block a user