diff options
| author | Thorsten Töpper <atsutane@freethoughts.de> | 2026-02-24 23:35:18 +0100 |
|---|---|---|
| committer | Thorsten Töpper <atsutane@freethoughts.de> | 2026-02-24 23:35:18 +0100 |
| commit | 9230578c5bb4ee0e3e08ce432a7f07b9b967c0b8 (patch) | |
| tree | 22fcfb8081771c806e579c878f6b352e0468593c /src/duplicate_finder.c | |
| parent | a3b5ddabd37cce398e84f0e98fa9c3318ee8df86 (diff) | |
| download | duplicate_finder-9230578c5bb4ee0e3e08ce432a7f07b9b967c0b8.tar.gz duplicate_finder-9230578c5bb4ee0e3e08ce432a7f07b9b967c0b8.tar.bz2 | |
Also print duplicate filenames
Diffstat (limited to 'src/duplicate_finder.c')
| -rw-r--r-- | src/duplicate_finder.c | 9 |
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; } |
