Commit 90b70a6a authored by Viktor Dukhovni's avatar Viktor Dukhovni
Browse files

Fix typo in last commit

parent 8abffa4a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -752,7 +752,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;