]> 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>
Sat, 12 Dec 2020 15:35:44 +0000 (16:35 +0100)
bacula/src/filed/hello.c

index 4ff17c3530b202e337897307a43bf05937a4e99c..f427f58e9536a743553c1801e5ecf5016a32fb90 100644 (file)
@@ -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);
 }