summaryrefslogtreecommitdiffstats
path: root/include/libssh/session.h
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2011-09-02 13:46:10 +0300
committerAndreas Schneider <asn@cryptomilk.org>2011-09-02 22:59:44 +0200
commit64b125700eb472787eea6dba9d2ca29d8bc360d7 (patch)
tree38bda65935a1e126b3d48b7b37e08c07d540aa9a /include/libssh/session.h
parent6f650a61ca67c8f799a3c3d2f0c17bdd42136e5f (diff)
downloadlibssh-64b125700eb472787eea6dba9d2ca29d8bc360d7.tar.gz
libssh-64b125700eb472787eea6dba9d2ca29d8bc360d7.tar.xz
libssh-64b125700eb472787eea6dba9d2ca29d8bc360d7.zip
channels: replaced bugged lists with ssh_list
(cherry picked from commit 6d8bb956c5caa48c2aba6713f067224650c3c1e1) Conflicts: src/channels.c src/session.c
Diffstat (limited to 'include/libssh/session.h')
-rw-r--r--include/libssh/session.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/session.h b/include/libssh/session.h
index 58df0d58..1d571f68 100644
--- a/include/libssh/session.h
+++ b/include/libssh/session.h
@@ -110,7 +110,7 @@ struct ssh_session_struct {
struct ssh_crypto_struct *current_crypto;
struct ssh_crypto_struct *next_crypto; /* next_crypto is going to be used after a SSH2_MSG_NEWKEYS */
- ssh_channel channels; /* linked list of channels */
+ struct ssh_list *channels; /* linked list of channels */
int maxchannel;
int exec_channel_opened; /* version 1 only. more
info in channels1.c */