"print" is GNU bc specific.
[oweals/openssl.git] / crypto / bn / bn_ctx.c
index f72b075ccfb00c21cca87625e336d3125d3c5944..46132fd1806a04506803f23c4a2e03a4c4b2a336 100644 (file)
@@ -87,6 +87,7 @@ void BN_CTX_init(BN_CTX *ctx)
        ctx->tos = 0;
        ctx->flags = 0;
        ctx->depth = 0;
+       ctx->too_many = 0;
        for (i = 0; i < BN_CTX_NUM; i++)
                BN_init(&(ctx->bn[i]));
        }
@@ -118,7 +119,7 @@ BIGNUM *BN_CTX_get(BN_CTX *ctx)
                if (!ctx->too_many)
                        {
                        BNerr(BN_F_BN_CTX_GET,BN_R_TOO_MANY_TEMPORARY_VARIABLES);
-                       /* disable error code until SSL_CTX_end is called: */
+                       /* disable error code until BN_CTX_end is called: */
                        ctx->too_many = 1;
                        }
                return NULL;