1
0
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:
Bram Matthys
2006-12-01 15:39:44 +00:00
parent a6b8d8ff35
commit 3e134cbb0a
3 changed files with 7 additions and 0 deletions
+2
View File
@@ -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).
+1
View File
@@ -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;
+4
View File
@@ -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");