This part fixes braces around if-else.
[openssl.git] / crypto / rsa / rsa_saos.c
index 89d86f069e5c9fb2885dbbc38eb5599184533d76..8336f32f1687f578ec49728be00263c42977a97c 100644 (file)
@@ -85,8 +85,9 @@ int RSA_verify_ASN1_OCTET_STRING(int dtype,
     if (((unsigned int)sig->length != m_len) ||
         (memcmp(m, sig->data, m_len) != 0)) {
         RSAerr(RSA_F_RSA_VERIFY_ASN1_OCTET_STRING, RSA_R_BAD_SIGNATURE);
-    } else
+    } else {
         ret = 1;
+    }
  err:
     ASN1_OCTET_STRING_free(sig);
     OPENSSL_clear_free(s, (unsigned int)siglen);