diff --git a/doc/dox_comments/header_files/ssl.h b/doc/dox_comments/header_files/ssl.h index 62710ebc2..d8727d4f5 100644 --- a/doc/dox_comments/header_files/ssl.h +++ b/doc/dox_comments/header_files/ssl.h @@ -13147,7 +13147,8 @@ WOLFSSL_API int wolfSSL_CTX_set_groups(WOLFSSL_CTX* ctx, int* groups, \param [in] count the number of key exchange groups in groups. \return BAD_FUNC_ARG if a pointer parameter is null, the number of groups - exceeds WOLFSSL_MAX_GROUP_COUNT or not using TLS v1.3. + exceeds WOLFSSL_MAX_GROUP_COUNT, any of the identifiers are unrecognized or + not using TLS v1.3. \return WOLFSSL_SUCCESS if successful. _Example_ @@ -13157,7 +13158,7 @@ WOLFSSL_API int wolfSSL_CTX_set_groups(WOLFSSL_CTX* ctx, int* groups, int* groups = { WOLFSSL_ECC_X25519, WOLFSSL_ECC_SECP256R1 }; int count = 2; ... - ret = wolfSSL_set1_groups_list(ssl, groups, count); + ret = wolfSSL_set_groups(ssl, groups, count); if (ret != WOLFSSL_SUCCESS) { // failed to set group list }