Fix source where indent will not be able to cope
[openssl.git] / crypto / dh / dh.h
index 6e263f9dad738251040afe29ddacf1fbc81af71a..28a8e9506e15260fb54b1bb767cb455d9cf6acaa 100644 (file)
@@ -117,9 +117,11 @@ struct dh_method
        /* Methods here */
        int (*generate_key)(DH *dh);
        int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh);
+
+       /* Can be null */
        int (*bn_mod_exp)(const DH *dh, BIGNUM *r, const BIGNUM *a,
                                const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx,
-                               BN_MONT_CTX *m_ctx); /* Can be null */
+                               BN_MONT_CTX *m_ctx);
 
        int (*init)(DH *dh);
        int (*finish)(DH *dh);