]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Tweak comments in hardlink code
authorEric Bollengier <eric@baculasystems.com>
Fri, 5 Jun 2020 12:03:14 +0000 (14:03 +0200)
committerEric Bollengier <eric@baculasystems.com>
Thu, 29 Apr 2021 08:44:19 +0000 (10:44 +0200)
bacula/src/cats/bvfs.c

index 0fa744dca79e6096cab378f86a12f3fb96de8d53..b04a1c47ba54fb41923d7bbc0c1c019510c6b512 100644 (file)
@@ -1416,6 +1416,7 @@ bool Bvfs::insert_hardlinks(char *output_table)
 
    hardlinks = New(htable(hl, &hl->lnk));
    missing_hardlinks = New(alist(100, not_owned_by_alist));
+   Dmsg0(dbglevel, "Inserting hardlinks method=standard\n");
 
    Mmsg(query, "SELECT T.FileId, T.JobId, File.LStat FROM %s AS T JOIN File USING (FileId) WHERE Filename <> '' ORDER By T.JobId, T.FileIndex ASC", output_table);
    if (!db->bdb_sql_query(query.c_str(), checkhardlinks_handler, this)) {