dedup

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

commit 29cc8a15e33765d7d60fee42c4641c7988ab8c21
parent ce5099c0bd3870590d92a1d174bf6ae121deb02d
Author: sin <sin@2f30.org>
Date:   Sun,  7 Apr 2019 13:41:03 +0100

Fix error message

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

diff --git a/dedup.c b/dedup.c @@ -581,7 +581,7 @@ main(int argc, char *argv[]) compr_name = EARGF(usage()); compr_algo = compr_name2type(compr_name); if (compr_algo < 0) - errx(1, "unknown hash: %s", compr_name); + errx(1, "unknown compressor: %s", compr_name); break; case 'c': cflag = 1;