summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormilo <milo.sshiva@gmail.com>2009-08-07 00:19:20 +0200
committerAndreas Schneider <mail@cynapses.org>2009-08-07 11:40:07 +0200
commitec02ce0ec211f7935643b65fb489ad0c6cfde7e8 (patch)
tree61a65ddf9aa029f8597f98272355d352cd53c6ca
parent1b9676a0cc28e5dab6cea5ffe7c9fcd0fa10d9d8 (diff)
downloadlibssh-ec02ce0ec211f7935643b65fb489ad0c6cfde7e8.tar.gz
libssh-ec02ce0ec211f7935643b65fb489ad0c6cfde7e8.tar.xz
libssh-ec02ce0ec211f7935643b65fb489ad0c6cfde7e8.zip
Fix a typo: CHANNEL * -> ssh_channel
Signed-off-by: Andreas Schneider <mail@cynapses.org>
-rw-r--r--libssh/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/server.c b/libssh/server.c
index 1636123..4f7f73b 100644
--- a/libssh/server.c
+++ b/libssh/server.c
@@ -781,7 +781,7 @@ int ssh_message_channel_request_open_destination_port(SSH_MESSAGE *msg){
return msg->channel_request_open.destination_port;
}
-CHANNEL *ssh_message_channel_request_channel(SSH_MESSAGE *msg){
+ssh_channel ssh_message_channel_request_channel(SSH_MESSAGE *msg){
return msg->channel_request.channel;
}