]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak debug print in accurate
authorKern Sibbald <kern@sibbald.com>
Tue, 14 Jul 2009 20:11:27 +0000 (20:11 +0000)
committerKern Sibbald <kern@sibbald.com>
Tue, 14 Jul 2009 20:11:27 +0000 (20:11 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8997 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/filed/accurate.c
bacula/technotes

index e36ad80e5f5a1e164ca5524f093796fef768a021..df39a606894d0b7789286c132eede598076cc4bd 100644 (file)
@@ -169,6 +169,9 @@ static bool accurate_add_file(JCR *jcr, char *fname, char *lstat)
  * We check in file_list hash if fname have been backuped
  * the last time. After we can compare Lstat field. 
  * Full Lstat usage have been removed on 6612 
+ *
+ * Returns: true   if file has changed (must be backed up)
+ *          false  file not changed
  */
 bool accurate_check_file(JCR *jcr, FF_PKT *ff_pkt)
 {
@@ -205,8 +208,8 @@ bool accurate_check_file(JCR *jcr, FF_PKT *ff_pkt)
     */
    if (elt.mtime != ff_pkt->statp.st_mtime) {
 //   Jmsg(jcr, M_SAVED, 0, _("%s      st_mtime differs\n"), fname);
-      Dmsg3(dbglvl, "%s      st_mtime differs (%i!=%i)\n", 
-            fname, elt.mtime, ff_pkt->statp.st_mtime);
+      Dmsg3(dbglvl, "%s      st_mtime differs (%lld!=%lld)\n", 
+            fname, elt.mtime, (utime_t)ff_pkt->statp.st_mtime);
      stat = true;
    } else if (!(ff_pkt->flags & FO_MTIMEONLY) 
               && (elt.ctime != ff_pkt->statp.st_ctime)) {
@@ -217,7 +220,7 @@ bool accurate_check_file(JCR *jcr, FF_PKT *ff_pkt)
    }
 
    accurate_mark_file_as_seen(jcr, &elt);
-//   Dmsg2(dbglvl, "accurate %s = %i\n", fname, stat);
+//   Dmsg2(dbglvl, "accurate %s = %d\n", fname, stat);
 
 bail_out:
    unstrip_path(ff_pkt);
index 07711141e5c1fd77357e59865a3481769a98bb72..2176528db47f7626ba539a28582a1409c4d5dffc 100644 (file)
@@ -3,6 +3,7 @@
 General:
 
 14Jul09
+kes  Tweak debug print in accurate
 kes  Apply patch in bug #1315 by McMichaeli that fixes scripts/logwatch
 kes  Add more output when spooling and no space left
 ebl  Fix postgresql driver bug that displayed <NULL> rows from time to time.