From 6a3b87216d5ccfebf13c19613e7da5c4ff6fd2ae Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Mon, 13 Apr 2020 15:25:10 +0200 Subject: [PATCH] mxqdump: Show disabled servers --- mxqdump.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mxqdump.c b/mxqdump.c index 8a39e9e2..d3aff47f 100644 --- a/mxqdump.c +++ b/mxqdump.c @@ -135,6 +135,7 @@ static int print_group(struct mxq_group *g) " idle_sec=%lu" " job_command=%s" " group_name=%s" + " disabled_servers=%s" "\n", g->user_name, g->user_uid, @@ -163,7 +164,8 @@ static int print_group(struct mxq_group *g) g->stats_run_sec, g->stats_idle_sec, g->job_command, - g->group_name); + g->group_name, + g->group_disabled_servers); } static int print_job(struct mxq_group *g, struct mxq_job *j)