From 6d8bb956c5caa48c2aba6713f067224650c3c1e1 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Fri, 2 Sep 2011 13:46:10 +0300 Subject: channels: replaced bugged lists with ssh_list cherry-picked from 0aef5f Conflicts: src/session.c --- include/libssh/session.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/libssh/session.h') 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 */ -- cgit