From: Eric Bollengier Date: Mon, 7 Dec 2020 10:49:40 +0000 (+0100) Subject: Fix debug message X-Git-Tag: Release-11.0.0~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73326bc48e04cdbd470dbc46b6fd43891b7f974c;p=thirdparty%2Fbacula.git Fix debug message --- diff --git a/bacula/src/filed/hello.c b/bacula/src/filed/hello.c index 4ff17c353..f427f58e9 100644 --- a/bacula/src/filed/hello.c +++ b/bacula/src/filed/hello.c @@ -158,11 +158,10 @@ bool send_fdcaps(JCR *jcr, BSOCK *sd) do_dedup=1; #endif - Dmsg1(200, "Send caps to SD dedup=0 rehydration=%d\n", - do_dedup, - rehydration); + Dmsg3(200, "Send caps to SD dedup=%d rehydration=%d proxy=%d\n", + do_dedup, rehydration, jcr->director->remote); - return sd->fsend("fdcaps: dedup=0 rehydration=%d proxy=%d\n", + return sd->fsend("fdcaps: dedup=%d rehydration=%d proxy=%d\n", do_dedup, rehydration, jcr->director->remote); }