1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-30 11:06:38 +02:00

Parse error in remote include must be a fatal error. It is now (again).

This commit is contained in:
Bram Matthys
2021-08-21 16:04:28 +02:00
parent 24dec75576
commit ecc3ffe1e2
+2 -1
View File
@@ -10695,7 +10695,8 @@ void resource_download_complete(const char *url, const char *file, const char *e
{
if (rs->type & RESOURCE_INCLUDE)
{
config_read_file(rs->file, rs->url);
if (config_read_file(rs->file, rs->url) < 0)
loop.config_load_failed = 1;
} else {
ConfigEntryWrapper *wce;
for (wce = rs->wce; wce; wce = wce->next)