aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-09-06 14:34:32 +0000
committerBodo Möller <bodo@openssl.org>2000-09-06 14:34:32 +0000
commit15387be289c356aeee967a853ff5666a262a61ca (patch)
tree30bec94ad0cc9362679b6128fcee50f11237c0df /crypto/x509
parentf684090cbe0706bcd0280f7a14f609bed3c640c0 (diff)
downloadopenssl-15387be289c356aeee967a853ff5666a262a61ca.tar.gz
Another superfluous pair of parentheses.
Diffstat (limited to 'crypto/x509')
-rw-r--r--crypto/x509/x509_lu.c2
1 files changed, 1 insertions, 1 deletions
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