mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
net_gethosterror: Handle EAI_SYSTEM ("System error") properly
That error code means "check errno". A few users got it and we never figured out what happened - it usually fixed itself after restarting something - so hopefully with this we'll have more information the next time.
This commit is contained in:
parent
1349755bb5
commit
2ba4b9d26a
@ -510,8 +510,12 @@ const char *net_gethosterror(int error)
|
|||||||
{
|
{
|
||||||
g_return_val_if_fail(error != 0, NULL);
|
g_return_val_if_fail(error != 0, NULL);
|
||||||
|
|
||||||
|
if (error == EAI_SYSTEM) {
|
||||||
|
return strerror(errno);
|
||||||
|
} else {
|
||||||
return gai_strerror(error);
|
return gai_strerror(error);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* return TRUE if host lookup failed because it didn't exist (ie. not
|
/* return TRUE if host lookup failed because it didn't exist (ie. not
|
||||||
some error with name server) */
|
some error with name server) */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user