diff options
author | milo <milo.sshiva@gmail.com> | 2009-08-07 00:19:20 +0200 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2009-08-07 11:40:07 +0200 |
commit | ec02ce0ec211f7935643b65fb489ad0c6cfde7e8 (patch) | |
tree | 61a65ddf9aa029f8597f98272355d352cd53c6ca | |
parent | 1b9676a0cc28e5dab6cea5ffe7c9fcd0fa10d9d8 (diff) | |
download | libssh-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.c | 2 |
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; } |