Applied, thank you.

On Wed, Apr 3, 2024 at 3:08 PM Ron Yorston <r...@pobox.com> wrote:
>
> The coreutils versions of md5sum and the like accept uppercase hex
> strings from checksum files specified with the '-c' option.
>
> Use a case-insensitive comparison so BusyBox does the same.
>
> Signed-off-by: Ron Yorston <r...@pobox.com>
> ---
>  coreutils/md5_sha1_sum.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/coreutils/md5_sha1_sum.c b/coreutils/md5_sha1_sum.c
> index f6a21237d..978d328f1 100644
> --- a/coreutils/md5_sha1_sum.c
> +++ b/coreutils/md5_sha1_sum.c
> @@ -320,7 +320,7 @@ int md5_sha1_sum_main(int argc UNUSED_PARAM, char **argv)
>
>                                 hash_value = hash_file(in_buf, filename_ptr, 
> sha3_width);
>
> -                               if (hash_value && (strcmp((char*)hash_value, 
> line) == 0)) {
> +                               if (hash_value && 
> (strcasecmp((char*)hash_value, line) == 0)) {
>                                         if (!(flags & FLAG_SILENT))
>                                                 printf("%s: OK\n", 
> filename_ptr);
>                                 } else {
> --
> 2.44.0
>
> _______________________________________________
> busybox mailing list
> busybox@busybox.net
> http://lists.busybox.net/mailman/listinfo/busybox
_______________________________________________
busybox mailing list
busybox@busybox.net
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to