aboutsummaryrefslogtreecommitdiff
path: root/libssh/messages.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2005-08-26 00:25:01 +0000
committerAris Adamantiadis <aris@0xbadc0de.be>2005-08-26 00:25:01 +0000
commite2bdc2f66c85d4d1a38b2511cb98da105cafcc24 (patch)
treec32b3d25c0e927d3bc7e9ecb943ce2549f1261df /libssh/messages.c
parent35221f967ef5e9801c2496a7f10ced1408f9cd20 (diff)
downloadlibssh-e2bdc2f66c85d4d1a38b2511cb98da105cafcc24.tar.gz
libssh-e2bdc2f66c85d4d1a38b2511cb98da105cafcc24.tar.xz
libssh-e2bdc2f66c85d4d1a38b2511cb98da105cafcc24.zip
sftp server implementation :)
at this time, basic support of opendir, readdir, lstat, etc. just enough to "sftp" in and type ls. git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@16 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'libssh/messages.c')
-rw-r--r--libssh/messages.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/messages.c b/libssh/messages.c
index 46dec52..6523f1c 100644
--- a/libssh/messages.c
+++ b/libssh/messages.c
@@ -282,7 +282,7 @@ int ssh_message_channel_request_reply_success(SSH_MESSAGE *msg){
u32 channel;
if(msg->channel_request.want_reply){
channel=msg->channel_request.channel->remote_channel;
- ssh_say(2,"Sending a default channel_success denied to channel %d\n",channel);
+ ssh_say(2,"Sending a channel_request success to channel %d\n",channel);
packet_clear_out(msg->session);
buffer_add_u8(msg->session->out_buffer,SSH2_MSG_CHANNEL_SUCCESS);
buffer_add_u32(msg->session->out_buffer,htonl(channel));