1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Use non-fatal asserts even for regular build

This commit is contained in:
Ondrej Zajicek (work)
2018-01-10 16:17:37 +01:00
parent 72163bd5f3
commit 2e507a7457
4 changed files with 3 additions and 7 deletions

View File

@@ -437,7 +437,7 @@ static void
channel_request_reload(struct channel *c)
{
ASSERT(c->channel_state == CS_UP);
// ASSERT(channel_reloadable(c));
ASSERT(channel_reloadable(c));
c->proto->reload_routes(c);