tFix error message - 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 29cc8a15e33765d7d60fee42c4641c7988ab8c21
(DIR) parent ce5099c0bd3870590d92a1d174bf6ae121deb02d
(HTM) Author: sin <sin@2f30.org>
Date: Sun, 7 Apr 2019 13:41:03 +0100
Fix error message
Diffstat:
M dedup.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/dedup.c b/dedup.c
t@@ -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;