Commit 9624b50d authored by Viktor Dukhovni's avatar Viktor Dukhovni Committed by Viktor Dukhovni
Browse files

Fix typo in last commit

(cherry picked from commit 90b70a6a)
parent 449d8645
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -728,7 +728,7 @@ static int check_hosts(X509 *x, X509_VERIFY_PARAM_ID *id)
	for (i = 0; i < n; ++i)
		{
		name = (unsigned char *)sk_OPENSSL_STRING_value(id->hosts, i);
		if (X509_check_host(x, name, 0, id->hostflags)) > 0)
		if (X509_check_host(x, name, 0, id->hostflags) > 0)
			return 1;
		}
	return n == 0;