openssl 1.1.0 compatibility (Bug 497230)
[deliverable/titan.core.git] / mctr2 / cli / config_read.y
index 16135a81bc486fe256ef56d4e75177f574a744dc..4acf98185d63aa7bb2b3016d3f24ee1b3e65a23b 100644 (file)
@@ -402,7 +402,7 @@ IntegerValue:
        {
          $$ = BN_new();
     BN_CTX *ctx = BN_CTX_new();
-    BN_CTX_init(ctx);
+    //BN_CTX_init(ctx);
     BN_mul($$, $1, $3, ctx);
     BN_CTX_free(ctx);
     BN_free($1);
@@ -418,7 +418,7 @@ IntegerValue:
       $$ = BN_0;
     } else {
       BN_CTX *ctx = BN_CTX_new();
-      BN_CTX_init(ctx);
+      //BN_CTX_init(ctx);
       BN_div($$, NULL, $1, $3, ctx);
       BN_CTX_free(ctx);
       BN_free(BN_0);
This page took 0.023583 seconds and 5 git commands to generate.