summaryrefslogtreecommitdiff
path: root/nest
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2018-01-10 16:17:37 +0100
committerOndrej Zajicek (work) <santiago@crfreenet.org>2018-01-10 16:17:37 +0100
commit2e507a745733b0cee2ea7d302cc9d626cb2e0c80 (patch)
tree41e0106b834a382dc4b3a329625f655819c6b3d9 /nest
parent72163bd5f3ccefc1edda585f6f605c37e774a0b8 (diff)
Use non-fatal asserts even for regular build
Diffstat (limited to 'nest')
-rw-r--r--nest/proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/proto.c b/nest/proto.c
index d584cb93..15d6f4de 100644
--- a/nest/proto.c
+++ b/nest/proto.c
@@ -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);