diff --git a/src/knot/ctl/commands.c b/src/knot/ctl/commands.c index 7c22edb61faa9468ac560f819c0c0f4658c2743a..8fc7cba694d8fe9a848dc1df8754fbb8b7ada2fa 100644 --- a/src/knot/ctl/commands.c +++ b/src/knot/ctl/commands.c @@ -137,9 +137,9 @@ static int zone_status(zone_t *zone, remote_cmdargs_t *a) char when[128] = { '\0' }; zone_event_type_t next_type = ZONE_EVENT_INVALID; const char *next_name = ""; + time_t next_time = zone_events_get_next(zone, &next_type); if (next_type != ZONE_EVENT_INVALID) { next_name = zone_events_get_name(next_type); - time_t next_time = zone_events_get_next(zone, &next_type); next_time = next_time - time(NULL); if (next_time < 0) { memcpy(when, "pending", strlen("pending"));