aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2009-07-08 10:28:54 +0200
committerMartin Willi <martin@strongswan.org>2009-07-08 10:28:54 +0200
commitd7b965e93137b9cbf40852cafff3e4c945e36955 (patch)
tree087509cbde53a1382043ad62780b81f2897fef33 /src
parentc99227630c60b5ecd92c7b9fe83287bdb0f79f6a (diff)
downloadstrongswan-d7b965e93137b9cbf40852cafff3e4c945e36955.tar.bz2
strongswan-d7b965e93137b9cbf40852cafff3e4c945e36955.tar.xz
fixed two doxygen warnings
Diffstat (limited to 'src')
-rw-r--r--src/libstrongswan/chunk.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libstrongswan/chunk.h b/src/libstrongswan/chunk.h
index bc5c3574a..bfb53de8b 100644
--- a/src/libstrongswan/chunk.h
+++ b/src/libstrongswan/chunk.h
@@ -83,8 +83,9 @@ chunk_t chunk_create_cat(u_char *ptr, const char* mode, ...);
void chunk_split(chunk_t chunk, const char *mode, ...);
/**
- * Write the binary contents of a chunk_t to a file
- *
+ * Write the binary contents of a chunk_t to a file
+ *
+ * @param chunk contents to write to file
* @param path path where file is written to
* @param label label specifying file type
* @param mask file mode creation mask
@@ -99,6 +100,7 @@ bool chunk_write(chunk_t chunk, char *path, char *label, mode_t mask, bool force
* The resulting string is '\\0' terminated, but the chunk does not include
* the '\\0'. If buf is supplied, it must hold at least (chunk.len * 2 + 1).
*
+ * @param chunk data to convert to hex encoding
* @param buf buffer to write to, NULL to malloc
* @param uppercase TRUE to use uppercase letters
* @return chunk of encoded data