mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-04 06:23:13 +02:00
- Setting set::pingpong-warning didn't work, reported by vonitsanet, patch supplied by
avb (#0003131).
This commit is contained in:
@@ -1408,3 +1408,5 @@
|
||||
** 3.2.6-rc1 release **
|
||||
- Get rid of some old stuff in release notes
|
||||
- Added donators since 3.2.5
|
||||
- Setting set::pingpong-warning didn't work, reported by vonitsanet, patch supplied by
|
||||
avb (#0003131).
|
||||
|
||||
@@ -296,6 +296,7 @@ struct SetCheck {
|
||||
unsigned has_auto_join:1;
|
||||
unsigned has_oper_auto_join:1;
|
||||
unsigned has_check_target_nick_bans:1;
|
||||
unsigned has_pingpong_warning:1;
|
||||
unsigned has_oper_only_stats:1;
|
||||
unsigned has_maxchannelsperuser:1;
|
||||
unsigned has_maxdccallow:1;
|
||||
|
||||
@@ -7216,6 +7216,10 @@ int _test_set(ConfigFile *conf, ConfigEntry *ce)
|
||||
CheckNull(cep);
|
||||
CheckDuplicate(cep, check_target_nick_bans, "check-target-nick-bans");
|
||||
}
|
||||
else if (!strcmp(cep->ce_varname, "pingpong-warning")) {
|
||||
CheckNull(cep);
|
||||
CheckDuplicate(cep, pingpong_warning, "pingpong-warning");
|
||||
}
|
||||
else if (!strcmp(cep->ce_varname, "channel-command-prefix")) {
|
||||
CheckNull(cep);
|
||||
CheckDuplicate(cep, channel_command_prefix, "channel-command-prefix");
|
||||
|
||||
Reference in New Issue
Block a user