]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Fix debug message
authorEric Bollengier <eric@baculasystems.com>
Mon, 7 Dec 2020 10:49:40 +0000 (11:49 +0100)
committerEric Bollengier <eric@baculasystems.com>
Thu, 24 Mar 2022 08:02:57 +0000 (09:02 +0100)
bacula/src/filed/hello.c

index dc72509078cddd986a8f3374e4db92f9e0095970..343234afd40a9e81dd9c23ff5f6e84e5fe2d24ee 100644 (file)
@@ -162,11 +162,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);
 }