tShow number of blocks stored in -lv output - dedup - deduplicating backup program
 (HTM) git clone git://git.z3bra.org/dedup.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 115a93564d2c1cba04b4a2f0ace7dfbd52906bb4
 (DIR) parent c908de37593b46facbf6f015dddc4937e979f60d
 (HTM) Author: sin <sin@2f30.org>
       Date:   Wed, 21 Mar 2018 17:47:50 +0000
       
       Show number of blocks stored in -lv output
       
       Diffstat:
         M dedup.c                             |       2 ++
       
       1 file changed, 2 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/dedup.c b/dedup.c
       t@@ -437,6 +437,8 @@ list(void)
        
                        for (i = 0; i < sizeof(ent.md); i++)
                                printf("%02x", ent.md[i]);
       +                if (verbose)
       +                        printf(" %lld", ent.nblks * BLKSIZ);
                        putchar('\n');
                        lseek(ifd, ent.nblks * sizeof(ent.blks[0]), SEEK_CUR);
                }