From: Eric Bollengier Date: Tue, 11 Oct 2011 14:10:54 +0000 (+0200) Subject: Send level command before fileset as sugested by Bastian. Fix #1768 X-Git-Tag: Release-7.0.0~553 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3ebea0a6c6b2c5588334d26c5c4d34f3d3b2abcb;p=bacula%2Fbacula Send level command before fileset as sugested by Bastian. Fix #1768 --- diff --git a/bacula/src/dird/backup.c b/bacula/src/dird/backup.c index 67c580ba12..f084840ada 100644 --- a/bacula/src/dird/backup.c +++ b/bacula/src/dird/backup.c @@ -384,15 +384,15 @@ bool do_backup(JCR *jcr) jcr->setJobStatus(JS_Running); fd = jcr->file_bsock; - if (!send_include_list(jcr)) { + if (!send_level_command(jcr)) { goto bail_out; } - if (!send_exclude_list(jcr)) { + if (!send_include_list(jcr)) { goto bail_out; } - if (!send_level_command(jcr)) { + if (!send_exclude_list(jcr)) { goto bail_out; }