From 2852c1c0a1d75a4715255afde44ffbedeb63a39b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 26 Jan 2002 22:04:00 +0000 Subject: [PATCH] split a long line --- src/md5sum.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/md5sum.c b/src/md5sum.c index 33eb385..a5a31d0 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -1,5 +1,5 @@ /* Compute MD5 or SHA1 checksum of files or strings - Copyright (C) 1995-2001 Free Software Foundation, Inc. + Copyright (C) 1995-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -410,7 +410,8 @@ digest_check (const char *checkfile_name, int (*digest_stream)(FILE *, void *)) in check file. Ignore case of hex digits. */ for (cnt = 0; cnt < digest_bin_bytes; ++cnt) { - if (TOLOWER (hex_digest[2 * cnt]) != bin2hex[bin_buffer[cnt] >> 4] + if (TOLOWER (hex_digest[2 * cnt]) + != bin2hex[bin_buffer[cnt] >> 4] || (TOLOWER (hex_digest[2 * cnt + 1]) != (bin2hex[bin_buffer[cnt] & 0xf]))) break; -- 2.7.4