aboutsummaryrefslogtreecommitdiff
path: root/src/duplicate_finder.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/duplicate_finder.c')
-rw-r--r--src/duplicate_finder.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/duplicate_finder.c b/src/duplicate_finder.c
index 8a058fd..f410f59 100644
--- a/src/duplicate_finder.c
+++ b/src/duplicate_finder.c
@@ -55,6 +55,15 @@ int analyze_db_content() {
return EXIT_FAILURE;
}
+ printf("\n\n---- IDENTICAL FILENAMES ----\n\n");
+
+ if (dbi_print_identical_filenames(stdout) < 0) {
+ LOGERR("ERROR: Identification of duplicates via filenames failed.\n");
+ dbi_close();
+ return EXIT_FAILURE;
+ }
+
+
dbi_close();
return EXIT_SUCCESS;
}