diff options
author | Viktor Dukhovni <openssl-users@dukhovni.org> | 2016-01-08 05:56:43 +0100 |
---|---|---|
committer | Viktor Dukhovni <openssl-users@dukhovni.org> | 2016-01-08 18:53:39 +0100 |
commit | 8707e3be0c92f05ac3566cc79191b661195fe9f2 (patch) | |
tree | 9fd62cf8ed2834dfbbffc7652a3d7fb48a457f3d /crypto | |
parent | Simplify deprecated declaration exception (diff) | |
download | openssl-8707e3be0c92f05ac3566cc79191b661195fe9f2.tar.xz openssl-8707e3be0c92f05ac3566cc79191b661195fe9f2.zip |
Update comment as bn_dup_expand is gone
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/bn/bn_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c index 6393a34f8a..150f4b80de 100644 --- a/crypto/bn/bn_lib.c +++ b/crypto/bn/bn_lib.c @@ -295,7 +295,7 @@ BIGNUM *BN_new(void) return (ret); } -/* This is used both by bn_expand2() and bn_dup_expand() */ +/* This is used by bn_expand2() */ /* The caller MUST check that words > b->dmax before calling this */ static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words) { |