aboutsummaryrefslogtreecommitdiff
path: root/src/channels.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2014-04-09 14:52:14 +0200
committerAndreas Schneider <asn@cryptomilk.org>2014-04-10 08:54:11 +0200
commit927cd90dc171b7e7a400ab8c1c9474f627e89167 (patch)
tree7f4121a4351674b640bc79d40d71b2a2cccb542b /src/channels.c
parentb5efbe75cd7b3881618940f9508b313222176bd8 (diff)
downloadlibssh-927cd90dc171b7e7a400ab8c1c9474f627e89167.tar.gz
libssh-927cd90dc171b7e7a400ab8c1c9474f627e89167.tar.xz
libssh-927cd90dc171b7e7a400ab8c1c9474f627e89167.zip
channels: Fix exit-signal request.
BUG: https://red.libssh.org/issues/153
Diffstat (limited to 'src/channels.c')
-rw-r--r--src/channels.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/channels.c b/src/channels.c
index 1766f7a1..e38d9141 100644
--- a/src/channels.c
+++ b/src/channels.c
@@ -3523,9 +3523,9 @@ error:
}
/**
- * @brief Send an exit signal to remote process (as described in RFC 4254, section 6.10).
+ * @brief Send an exit signal to remote process (RFC 4254, section 6.10).
*
- * Sends a signal 'sig' to the remote process.
+ * This sends the exit status of the remote process.
* Note, that remote system may not support signals concept.
* In such a case this request will be silently ignored.
* Only SSH-v2 is supported (I'm not sure about SSH-v1).
@@ -3603,7 +3603,7 @@ int ssh_channel_request_send_exit_signal(ssh_channel channel, const char *sig,
goto error;
}
- rc = channel_request(channel, "signal", buffer, 0);
+ rc = channel_request(channel, "exit-signal", buffer, 0);
error:
ssh_buffer_free(buffer);
if(tmp)