aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2014-09-11 17:56:12 +0200
committerTobias Brunner <tobias@strongswan.org>2014-09-11 17:56:12 +0200
commitc6e8b5dc2c005a1aa48fd725f3204c83cd817525 (patch)
treeefaef4f6c072b7bd440660e76524cfc701c921ab /src
parent8ca9a67fac597246cefaeaa3932446b6d053afc7 (diff)
downloadstrongswan-c6e8b5dc2c005a1aa48fd725f3204c83cd817525.tar.bz2
strongswan-c6e8b5dc2c005a1aa48fd725f3204c83cd817525.tar.xz
chunk: Fix Doxygen comments for chunk_internet_checksum[_inc]
Diffstat (limited to 'src')
-rw-r--r--src/libstrongswan/utils/chunk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstrongswan/utils/chunk.h b/src/libstrongswan/utils/chunk.h
index 0daa2e1d0..48405b77e 100644
--- a/src/libstrongswan/utils/chunk.h
+++ b/src/libstrongswan/utils/chunk.h
@@ -418,7 +418,7 @@ u_int64_t chunk_mac(chunk_t chunk, u_char *key);
* is not a multiple of 16 bit the checksum bytes have to be swapped to
* compensate the even/odd alignment.
*
- * @param chunk data to process
+ * @param data data to process
* @return checksum (one's complement, network order)
*/
u_int16_t chunk_internet_checksum(chunk_t data);
@@ -430,7 +430,7 @@ u_int16_t chunk_internet_checksum(chunk_t data);
* If data is not a multiple of 16 bits the checksum may have to be swapped to
* compensate even/odd alignment (see chunk_internet_checksum()).
*
- * @param chunk data to process
+ * @param data data to process
* @param checksum previous checksum (one's complement, network order)
* @return checksum (one's complement, network order)
*/