diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2011-09-02 13:46:10 +0300 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2011-09-02 13:46:10 +0300 |
commit | 6d8bb956c5caa48c2aba6713f067224650c3c1e1 (patch) | |
tree | 00ab42ac7c63dc6e030f844f93cfb58999477bb2 /include/libssh/session.h | |
parent | 3eece8ac0b107a7df8d95325ef17ed19d6429e75 (diff) | |
download | libssh-6d8bb956c5caa48c2aba6713f067224650c3c1e1.tar.gz libssh-6d8bb956c5caa48c2aba6713f067224650c3c1e1.tar.xz libssh-6d8bb956c5caa48c2aba6713f067224650c3c1e1.zip |
channels: replaced bugged lists with ssh_list
cherry-picked from 0aef5f
Conflicts:
src/session.c
Diffstat (limited to 'include/libssh/session.h')
-rw-r--r-- | include/libssh/session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/session.h b/include/libssh/session.h index 3914326..d251e7e 100644 --- a/include/libssh/session.h +++ b/include/libssh/session.h @@ -119,7 +119,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 */ |