1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Remove unused variable.

git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5031 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Jilles Tjoelker 2009-02-28 23:09:33 +00:00 committed by jilles
parent 5f05c7ca7a
commit 0764675409

View File

@ -245,7 +245,7 @@ static GIOChannel *irssi_ssl_get_iochannel(GIOChannel *handle, const char *mycer
{
GIOSSLChannel *chan;
GIOChannel *gchan;
int err, fd;
int fd;
SSL *ssl;
SSL_CTX *ctx = NULL;
@ -308,7 +308,7 @@ static GIOChannel *irssi_ssl_get_iochannel(GIOChannel *handle, const char *mycer
return NULL;
}
if(!(err = SSL_set_fd(ssl, fd)))
if(!SSL_set_fd(ssl, fd))
{
g_warning("Failed to associate socket to SSL stream");
SSL_free(ssl);