aboutsummaryrefslogtreecommitdiff
path: root/libssh/string.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2009-09-26 01:34:14 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2009-09-26 01:34:14 +0200
commit0f77578ee2095311ebe71785be4ee7dad135728a (patch)
tree1adbaba9565175753d2d05aef9321808f99a836a /libssh/string.c
parent3e314e863cb70f8594b0c9b79d14edb3a929d708 (diff)
downloadlibssh-0f77578ee2095311ebe71785be4ee7dad135728a.tar.gz
libssh-0f77578ee2095311ebe71785be4ee7dad135728a.tar.xz
libssh-0f77578ee2095311ebe71785be4ee7dad135728a.zip
Fixed doxygen compilation warnings
Diffstat (limited to 'libssh/string.c')
-rw-r--r--libssh/string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libssh/string.c b/libssh/string.c
index d06fab6..2299440 100644
--- a/libssh/string.c
+++ b/libssh/string.c
@@ -96,7 +96,7 @@ struct ssh_string_struct *string_from_char(const char *what) {
/**
* \brief returns the size of a SSH string
- * \param str the input SSH string
+ * \param s the input SSH string
* \return size of the content of str, 0 on error
*/
size_t string_len(struct ssh_string_struct *s) {
@@ -109,7 +109,7 @@ size_t string_len(struct ssh_string_struct *s) {
/**
* \brief convert a SSH string to a C nul-terminated string
- * \param str the input SSH string
+ * \param s the input SSH string
* \return a malloc'ed string pointer.
* \warning If the input SSH string contains zeroes, some parts of
* the output string may not be readable with regular libc functions.