aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_pkey.h
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2018-08-08 17:25:26 +0900
committerGitHub <noreply@github.com>2018-08-08 17:25:26 +0900
commita1e8aacaef3cc9f95ccbdba653a82e1a334cdeb4 (patch)
treeddc2b8514da2c9507d8dd5b118d05a95346ccba7 /ext/openssl/ossl_pkey.h
parent54adb0dd7c33d863341570bdc781ead25e2c3a78 (diff)
parent8bb519b11cacd65b6043e5cde007f0765049d283 (diff)
downloadruby-openssl-a1e8aacaef3cc9f95ccbdba653a82e1a334cdeb4.tar.gz
Merge pull request #205 from rhenium/ky/pkey-generate-interrupt-resume
pkey: resume key generation after interrupt [Bug #14882]
Diffstat (limited to 'ext/openssl/ossl_pkey.h')
-rw-r--r--ext/openssl/ossl_pkey.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl_pkey.h b/ext/openssl/ossl_pkey.h
index a0b49744..5c8ccc0f 100644
--- a/ext/openssl/ossl_pkey.h
+++ b/ext/openssl/ossl_pkey.h
@@ -41,7 +41,7 @@ extern const rb_data_type_t ossl_evp_pkey_type;
struct ossl_generate_cb_arg {
int yield;
- int stop;
+ int interrupted;
int state;
};
int ossl_generate_cb_2(int p, int n, BN_GENCB *cb);