summaryrefslogtreecommitdiffstats
path: root/libssh/channels.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/channels.c
parent3e314e863cb70f8594b0c9b79d14edb3a929d708 (diff)
downloadlibssh-0f77578ee2095311ebe71785be4ee7dad135728a.tar.gz
libssh-0f77578ee2095311ebe71785be4ee7dad135728a.tar.xz
libssh-0f77578ee2095311ebe71785be4ee7dad135728a.zip
Fixed doxygen compilation warnings
Diffstat (limited to 'libssh/channels.c')
-rw-r--r--libssh/channels.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libssh/channels.c b/libssh/channels.c
index f96051ef..1f2c64c5 100644
--- a/libssh/channels.c
+++ b/libssh/channels.c
@@ -1229,13 +1229,13 @@ int channel_request_shell(ssh_channel channel) {
*
* @param channel The channel to send the request.
*
- * @param system The subsystem to request (for example "sftp").
+ * @param subsys The subsystem to request (for example "sftp").
*
* @return SSH_SUCCESS on success, SSH_ERROR on error.
*
* @warning You normally don't have to call it for sftp, see sftp_new().
*/
-int channel_request_subsystem(ssh_channel channel, const char *sys) {
+int channel_request_subsystem(ssh_channel channel, const char *subsys) {
ssh_buffer buffer = NULL;
ssh_string subsystem = NULL;
int rc = SSH_ERROR;
@@ -1245,7 +1245,7 @@ int channel_request_subsystem(ssh_channel channel, const char *sys) {
goto error;
}
- subsystem = string_from_char(sys);
+ subsystem = string_from_char(subsys);
if (subsystem == NULL) {
goto error;
}