From 9230578c5bb4ee0e3e08ce432a7f07b9b967c0b8 Mon Sep 17 00:00:00 2001 From: Thorsten Töpper Date: Tue, 24 Feb 2026 23:35:18 +0100 Subject: Also print duplicate filenames --- src/duplicate_finder.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/duplicate_finder.c') 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; } -- cgit v1.3