Skip to content
Snippets Groups Projects

Event error reporting in "knotc -b" and some event handlers updates

Merged David Vasek requested to merge event_handlers_updates into master
Viewing commit 7f61aa83
Show latest version
1 file
+ 1
6
Preferences
Compare changes
@@ -29,10 +29,5 @@ int event_flush(conf_t *conf, zone_t *zone)
return KNOT_EOK;
}
int ret = zone_flush_journal(conf, zone, true);
if (ret != KNOT_EOK) {
return ret;
}
return KNOT_EOK;
return zone_flush_journal(conf, zone, true);
}