md5: Don't increment a bool.

Fixes:		4849767cb1
MFC after:	1 week
Sponsored by:	Klara, Inc.
Reviewed by:	kevans
Differential Revision:	https://reviews.freebsd.org/D40020
This commit is contained in:
Dag-Erling Smørgrav
2023-05-09 17:59:27 +00:00
parent 90eaf4b2f9
commit facc213643
+3 -3
View File
@@ -662,7 +662,7 @@ main(int argc, char *argv[])
}
if (failed)
return (1);
if (checksFailed != 0)
if (checksFailed > 0)
return (2);
return (0);
@@ -759,7 +759,7 @@ MDOutput(const Algorithm_t *alg, char *p, const char *name)
if (p == NULL) {
warn("%s", name);
failed++;
failed = true;
} else if (cflag && mode != mode_bsd) {
checkfailed = strcasecmp(checkAgainst, p) != 0;
if (!sflag && (!qflag || checkfailed))
@@ -1001,7 +1001,7 @@ MDTestSuite(const Algorithm_t *alg)
printf(" - verified correct\n");
} else {
printf(" - INCORRECT RESULT!\n");
failed++;
failed = true;
}
}
}