1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-08 19:02:06 +03:00

legacy: Added missing channel_write_stderr.

This commit is contained in:
Andreas Schneider
2011-02-23 12:38:45 +01:00
parent 8d3823127c
commit dab8f847e6
2 changed files with 7 additions and 0 deletions

View File

@@ -242,4 +242,9 @@ char *string_to_char(ssh_string str){
int ssh_accept(ssh_session session) {
return ssh_handle_key_exchange(session);
}
int channel_write_stderr(ssh_channel channel, const void *data, uint32_t len) {
return ssh_channel_write(channel, data, len);
}
#endif /* WITH_SERVER */