diff options
author | Doug Hogan <[email protected]> | 2019-01-16 07:29:30 -0800 |
---|---|---|
committer | Doug Hogan <[email protected]> | 2019-01-16 07:29:30 -0800 |
commit | 0b67f754bd6e0f22b1b7e1c9b2270f8118a66f38 (patch) | |
tree | d5c97f38dcc05449a459b0b6f9d6138c46746df0 /lib/crypto | |
parent | f60984150457bbf3c600f8b241a49765a04b76c2 (diff) | |
download | otp-0b67f754bd6e0f22b1b7e1c9b2270f8118a66f38.tar.gz otp-0b67f754bd6e0f22b1b7e1c9b2270f8118a66f38.tar.bz2 otp-0b67f754bd6e0f22b1b7e1c9b2270f8118a66f38.zip |
Fix label s/out_err/err/ in OPENSSL_NO_EC2M case per PR comment
Diffstat (limited to 'lib/crypto')
-rw-r--r-- | lib/crypto/c_src/ec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/c_src/ec.c b/lib/crypto/c_src/ec.c index 6da262e6a5..51a3547694 100644 --- a/lib/crypto/c_src/ec.c +++ b/lib/crypto/c_src/ec.c @@ -99,7 +99,7 @@ static EC_KEY* ec_key_new(ErlNifEnv* env, ERL_NIF_TERM curve_arg) } else if (f_arity == 3 && field[0] == atom_characteristic_two_field) { #if defined(OPENSSL_NO_EC2M) enif_raise_exception(env, atom_notsup); - goto out_err; + goto err; #else /* {characteristic_two_field, M, Basis} */ int b_arity = -1; |