dedup

deduplicating backup program
git clone git://git.2f30.org/dedup
Log | Files | Refs | README | LICENSE

commit 2c9dc65a8287e67d92b8ce1aa87d205243aa9eeb
parent 5fa42ddf202feedb3db6ab52ac33c6e56d90dc3a
Author: sin <sin@2f30.org>
Date:   Mon,  8 Apr 2019 13:18:52 +0100

Explicitly initialize hash_algo

Diffstat:
Mdedup.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dedup.c b/dedup.c @@ -33,7 +33,7 @@ static struct blk_hdr blk_hdr; static struct icache *icache; static int ifd; static int sfd; -static int hash_algo; +static int hash_algo = HASH_BLAKE2B; static int compr_algo = COMPR_LZ4; int verbose;