diff options
Diffstat (limited to 'libssh/string.c')
-rw-r--r-- | libssh/string.c | 4 |
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. |