From 8124907f3a40e7cc1815ab40860cc116ab1d6fbb Mon Sep 17 00:00:00 2001 From: Hauke Petersen <hauke.petersen@fu-berlin.de> Date: Fri, 13 Mar 2015 19:40:38 +0100 Subject: [PATCH] net/ng_netapi: changed semantics of get function --- sys/include/net/ng_netapi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/include/net/ng_netapi.h b/sys/include/net/ng_netapi.h index 12d4c7de9a..2bd01938e2 100644 --- a/sys/include/net/ng_netapi.h +++ b/sys/include/net/ng_netapi.h @@ -91,12 +91,12 @@ int ng_netapi_send(kernel_pid_t pid, ng_pktsnip_t *pkt); * @param[in] opt option to get * @param[in] context (optional) context to the given option * @param[in] data pointer to buffer for reading the option's value - * @param[in] data_len size of the given buffer + * @param[in] max_len maximum number of bytes that fit into @p data * * @return value returned by the @ref NG_NETAPI_MSG_TYPE_ACK message */ int ng_netapi_get(kernel_pid_t pid, ng_netconf_opt_t opt, uint16_t context, - void *data, size_t data_len); + void *data, size_t max_len); /** * @brief Shortcut function for sending @ref NG_NETAPI_MSG_TYPE_SET messages and -- GitLab