Fix an unreleased issue due to the recent change
to using idx_t in commit
v9.10-91-g02983e493
* src/cksum.c (main): Limit the possible return to
the range supported by idx_t.
Reported by Bruno Haible.
#endif
#if HASH_ALGO_BLAKE2 || HASH_ALGO_CKSUM
case 'l':
- digest_length = xnumtoimax (optarg, 10, 0, INTMAX_MAX, "",
+ digest_length = xnumtoimax (optarg, 10, 0, IDX_MAX, "",
_("invalid length"), 0,
XTOINT_MAX_QUIET);
digest_length_str = optarg;