diff options
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 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 */ |