mirror of
https://github.com/irssi/irssi.git
synced 2025-01-03 14:56:47 -05: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:
parent
5f05c7ca7a
commit
0764675409
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user