mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +02: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
1 changed files with 2 additions and 2 deletions
|
|
@ -245,7 +245,7 @@ static GIOChannel *irssi_ssl_get_iochannel(GIOChannel *handle, const char *mycer
|
||||||
{
|
{
|
||||||
GIOSSLChannel *chan;
|
GIOSSLChannel *chan;
|
||||||
GIOChannel *gchan;
|
GIOChannel *gchan;
|
||||||
int err, fd;
|
int fd;
|
||||||
SSL *ssl;
|
SSL *ssl;
|
||||||
SSL_CTX *ctx = NULL;
|
SSL_CTX *ctx = NULL;
|
||||||
|
|
||||||
|
|
@ -308,7 +308,7 @@ static GIOChannel *irssi_ssl_get_iochannel(GIOChannel *handle, const char *mycer
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!(err = SSL_set_fd(ssl, fd)))
|
if(!SSL_set_fd(ssl, fd))
|
||||||
{
|
{
|
||||||
g_warning("Failed to associate socket to SSL stream");
|
g_warning("Failed to associate socket to SSL stream");
|
||||||
SSL_free(ssl);
|
SSL_free(ssl);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue