Fix source where indent will not be able to cope
[openssl.git] / crypto / dh / dh.h
index 9fa545654490232d0712c98f49d616a49334547a..01d7d103948b41231e7a08d84b3dd7ca70dd1130 100644 (file)
@@ -115,9 +115,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);