1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 16:43:12 +02:00

- Config parser failed to check for invalid set::ssl options, reported and patch by fbi (#4035).

This commit is contained in:
Bram Matthys
2011-12-25 13:20:19 +01:00
parent aa0af2ddd2
commit 316828edf8
2 changed files with 10 additions and 2 deletions
+2
View File
@@ -2322,3 +2322,5 @@
support through VERSION, before or after registration (#4064).
- Added patch from nenotopia to use more modern LUSERS numerics (#3967).
- Fix small error in oper block documentation, reported by Stealth (#2318).
- Config parser failed to check for invalid set::ssl options, reported
and patch by fbi (#4035).
+8 -2
View File
@@ -8562,8 +8562,14 @@ int _test_set(ConfigFile *conf, ConfigEntry *ce)
ceppp->ce_varlinenum, ceppp->ce_varname);
errors ++;
}
}
}
else
{
config_error("%s:%i: unknown directive set::ssl::%s",
cepp->ce_fileptr->cf_filename, cepp->ce_varlinenum,
cepp->ce_varname);
errors++;
}
}
#endif /* USE_SSL */
}