Commit 15387be2 authored by Bodo Möller's avatar Bodo Möller
Browse files

Another superfluous pair of parentheses.

parent f684090c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ void X509_LOOKUP_free(X509_LOOKUP *ctx)

int X509_LOOKUP_init(X509_LOOKUP *ctx)
	{
	if (ctx->method == NULL) return (0);
	if (ctx->method == NULL) return 0;
	if (ctx->method->init != NULL)
		return ctx->method->init(ctx);
	else