Fix a documentation bug in ec.h
authorMatt Caswell <matt@openssl.org>
Wed, 28 Aug 2019 08:53:58 +0000 (09:53 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 29 Aug 2019 10:10:14 +0000 (11:10 +0100)
The EC_GROUP_new() function does not take a libctx parameter

Reviewed-by: Paul Yang <kaishen.yy@antfin.com>
(Merged from https://github.com/openssl/openssl/pull/9715)

include/openssl/ec.h

index 807a64b31dc6f7e4d3eb9751a9b761e21934f9d1..4e1af5ea33c7c38b6448ad4c4246c4f9c4c4c364 100644 (file)
@@ -112,8 +112,6 @@ EC_GROUP *EC_GROUP_new_ex(OPENSSL_CTX *libctx, const EC_METHOD *meth);
 /**
  *  Creates a new EC_GROUP object. Same as EC_GROUP_new_ex with NULL for the
  *  library context.
- *  \param   libctx The associated library context or NULL for the default
- *                  library context
  *  \param   meth   EC_METHOD to use
  *  \return  newly created EC_GROUP object or NULL in case of an error.
  */