From 6f0f1ef29206a42dd5410df066a7560082c7c4bc Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 4 Nov 2013 21:55:29 +0100 Subject: doc: Fix doxygen warnings. --- src/channels.c | 11 ++++++----- src/options.c | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/channels.c b/src/channels.c index a006ab3..f7bcded 100644 --- a/src/channels.c +++ b/src/channels.c @@ -3348,17 +3348,18 @@ error: } /** - * @brief Send the exit status to the remote process (as described in RFC 4254, section 6.10). + * @brief Send the exit status to the remote process * - * Sends the exit status to the remote process. + * Sends the exit status to the remote process (as described in RFC 4254, + * section 6.10). * Only SSH-v2 is supported (I'm not sure about SSH-v1). * * @param[in] channel The channel to send exit status. * - * @param[in] sig The exit status to send + * @param[in] exit_status The exit status to send * - * @return SSH_OK on success, SSH_ERROR if an error occurred - * (including attempts to send exit status via SSH-v1 session). + * @return SSH_OK on success, SSH_ERROR if an error occurred. + * (including attempts to send exit status via SSH-v1 session). */ int ssh_channel_request_send_exit_status(ssh_channel channel, int exit_status) { ssh_buffer buffer = NULL; diff --git a/src/options.c b/src/options.c index 46dc0b4..e02ad4d 100644 --- a/src/options.c +++ b/src/options.c @@ -1254,7 +1254,7 @@ static int ssh_bind_options_set_algo(ssh_bind sshbind, int algo, /** * @brief This function can set all possible ssh bind options. * - * @param session An allocated ssh option structure. + * @param sshbind An allocated ssh bind structure. * * @param type The option type to set. This could be one of the * following: -- cgit