From 5f2dad3eab9e9d6d51a876a9921319356cfc582b Mon Sep 17 00:00:00 2001 From: "alexis.lagoutte@gmail.com" Date: Mon, 2 Nov 2015 10:12:18 +0000 Subject: [PATCH] Fix typo on doxygen documentation (found by -Wdocumentation with Clang) FossilOrigin-Name: f3142196b57109077080b4af5052c7aafc1624e71c0c1c77ec3c467ca451e893 --- src/capwap/capwap.h | 8 ++++---- src/capwap/conn_create.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/capwap/capwap.h b/src/capwap/capwap.h index 4e87b92f..e9a1aa28 100644 --- a/src/capwap/capwap.h +++ b/src/capwap/capwap.h @@ -653,7 +653,7 @@ extern int cw_readmsg_configuration_update_request(uint8_t * elems, int elems_le /** * Set the HLEN field of a CAWAP Header * @param th pointer to the header - * @param hlen velue to set (max. 5 bits) + * @param hlen value to set (Header Length) */ static inline void cw_set_hdr_hlen(uint8_t * th, int hlen) { @@ -666,7 +666,7 @@ static inline void cw_set_hdr_hlen(uint8_t * th, int hlen) /** * Set the WBID field of a CAWAP Header * @param th pointer to the header - * @param hlen velue to set (max. 5 bits) + * @param wbid value to set (Wireless ID) */ static inline void cw_set_hdr_wbid(uint8_t * th, int wbid) { @@ -679,7 +679,7 @@ static inline void cw_set_hdr_wbid(uint8_t * th, int wbid) /** * Set the RID field of a CAWAP Header * @param th pointer to the header - * @param hlen velue to set (max. 5 bits) + * @param rid value to set (Radio ID) */ static inline void cw_set_hdr_rid(uint8_t * th, int rid) { @@ -825,7 +825,7 @@ static inline int cw_set_hdr_rmac(uint8_t * th,bstr_t rmac) * Put a message element header for a message to contain a vendor specific payload * @param dst pointer to destination buffer * @param vendorid vendorid - * @param elementid element id of vendor specific data + * @param elemid element id of vendor specific data * @len length of vendor specific data * @return the number of bytes put (always 10) */ diff --git a/src/capwap/conn_create.c b/src/capwap/conn_create.c index 3a12afe7..6d730de2 100644 --- a/src/capwap/conn_create.c +++ b/src/capwap/conn_create.c @@ -33,7 +33,7 @@ /** * Create a conn object - * @param socket a socket + * @param sock a socket * @param addr the address associated * @param qsize size of packet queue * @return A pointer to the created object