Fix parameter name in doxygen

This commit is contained in:
Jarno Lamsa 2019-08-20 12:05:57 +03:00
parent c84bd24224
commit b9ca1b0868

View file

@ -3904,8 +3904,8 @@ void mbedtls_ssl_free( mbedtls_ssl_context *ssl );
* \param ssl The SSL context to save. On success, it is no longer * \param ssl The SSL context to save. On success, it is no longer
* associated with the connection that has been serialized. * associated with the connection that has been serialized.
* \param buf The buffer to write the serialized data to. It must be a * \param buf The buffer to write the serialized data to. It must be a
* writeable buffer of at least \p len bytes, or may be \c * writeable buffer of at least \p buf_len bytes, or may be \c
* NULL if \p len is \c 0. * NULL if \p buf_len is \c 0.
* \param buf_len The number of bytes available for writing in \p buf. * \param buf_len The number of bytes available for writing in \p buf.
* \param olen The size in bytes of the data that has been or would have * \param olen The size in bytes of the data that has been or would have
* been written. It must point to a valid \c size_t. * been written. It must point to a valid \c size_t.