Method: OpenSSL::X509::StoreContext#error=

Defined in:
ossl_x509store.c

#error=(error_code) ⇒ Object



620
621
622
623
624
625
626
627
628
629
# File 'ossl_x509store.c', line 620

static VALUE
ossl_x509stctx_set_error(VALUE self, VALUE err)
{
    X509_STORE_CTX *ctx;

    GetX509StCtx(self, ctx);
    X509_STORE_CTX_set_error(ctx, NUM2INT(err));

    return err;
}