indent has problems with comments that are on the right hand side of a line.
[openssl.git] / crypto / x509 / x509type.c
index 9702ec53103fc6c04ba154603a5ff5eb2a7aa573..66e3c6d8d6c369f9d2ca3f0cb30315d6b342a5f9 100644 (file)
@@ -122,8 +122,8 @@ int X509_certificate_type(X509 *x, EVP_PKEY *pkey)
                        }
                }
 
-       if (EVP_PKEY_size(pk) <= 1024/8)/* /8 because it's 1024 bits we look
-                                          for, not bytes */
+       /* /8 because it's 1024 bits we look for, not bytes */
+       if (EVP_PKEY_size(pk) <= 1024/8)
                ret|=EVP_PKT_EXP;
        if(pkey==NULL) EVP_PKEY_free(pk);
        return(ret);