1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

Set is_readable/is_writeable/use_buffer flags.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4792 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2008-03-30 14:13:52 +00:00 committed by exg
parent f34b9bba3b
commit f50b700ed3

View File

@ -301,6 +301,8 @@ static GIOChannel *irssi_ssl_get_iochannel(GIOChannel *handle, const char *mycer
gchan = (GIOChannel *)chan;
gchan->funcs = &irssi_ssl_channel_funcs;
g_io_channel_init(gchan);
gchan->is_readable = gchan->is_writeable = TRUE;
gchan->use_buffer = FALSE;
return gchan;
}