mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
Merge pull request #895 from janikrabe/master
Keep errstr set to NULL if errno is not set
This commit is contained in:
commit
88f77cb6f8
@ -842,7 +842,7 @@ int irssi_ssl_handshake(GIOChannel *handle)
|
||||
return -1;
|
||||
case SSL_ERROR_SYSCALL:
|
||||
errstr = ERR_reason_error_string(ERR_get_error());
|
||||
if (errstr == NULL && ret == -1)
|
||||
if (errstr == NULL && ret == -1 && errno)
|
||||
errstr = strerror(errno);
|
||||
g_warning("SSL handshake failed: %s", errstr != NULL ? errstr : "server closed connection unexpectedly");
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user