]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - apps/ocsp.c
fix some code with obvious wrong coding style
[thirdparty/openssl.git] / apps / ocsp.c
index 7a5f84e527d0eae46b172c4023e8740d1ca3c327..8f0eacad2b781434f7ec3bcea335522ad5ac5560 100644 (file)
@@ -1132,7 +1132,7 @@ static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req
     OCSP_copy_nonce(bs, req);
 
     mctx = EVP_MD_CTX_new();
-    if ( mctx == NULL || !EVP_DigestSignInit(mctx, &pkctx, rmd, NULL, rkey)) {
+    if (mctx == NULL || !EVP_DigestSignInit(mctx, &pkctx, rmd, NULL, rkey)) {
         *resp = OCSP_response_create(OCSP_RESPONSE_STATUS_INTERNALERROR, NULL);
         goto end;
     }