From 897756660ef89a28a5e0ef2b87127acc37a0cc1a Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Thu, 8 May 2008 12:05:36 +0000 Subject: [PATCH] ebl tweak show job=xxx command git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6915 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/dird/dird_conf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bacula/src/dird/dird_conf.c b/bacula/src/dird/dird_conf.c index e0cbb58898..1a5a762b96 100644 --- a/bacula/src/dird/dird_conf.c +++ b/bacula/src/dird/dird_conf.c @@ -635,6 +635,9 @@ void dump_resource(int type, RES *reshdr, void sendit(void *sock, const char *fm if (res->res_job.spool_size) { sendit(sock, _(" SpoolSize=%s\n"), edit_uint64(res->res_job.spool_size, ed1)); } + if (res->res_job.stats_enabled) { + sendit(sock, _(" StatsEnabled=%d\n"), res->res_job.stats_enabled); + } if (res->res_job.JobType == JT_BACKUP) { sendit(sock, _(" Accurate=%d\n"), res->res_job.accurate); } @@ -659,9 +662,6 @@ void dump_resource(int type, RES *reshdr, void sendit(void *sock, const char *fm if (res->res_job.RegexWhere) { sendit(sock, _(" --> RegexWhere=%s\n"), NPRT(res->res_job.RegexWhere)); } - if (res->res_job.stats_enabled) { - sendit(sock, _(" --> StatsEnabled=%d\n"), res->res_job.stats_enabled); - } if (res->res_job.RestoreBootstrap) { sendit(sock, _(" --> Bootstrap=%s\n"), NPRT(res->res_job.RestoreBootstrap)); } -- 2.39.5