From: Bodo Möller Date: Wed, 6 Sep 2000 14:34:32 +0000 (+0000) Subject: Another superfluous pair of parentheses. X-Git-Tag: OpenSSL-engine-0_9_6-beta1~12^2~8 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=15387be289c356aeee967a853ff5666a262a61ca;p=oweals%2Fopenssl.git Another superfluous pair of parentheses. --- diff --git a/crypto/x509/x509_lu.c b/crypto/x509/x509_lu.c index 1e6c040145..863c738cad 100644 --- a/crypto/x509/x509_lu.c +++ b/crypto/x509/x509_lu.c @@ -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