Use g_get_strerror() instead of strerror(errno) for portability

This commit is contained in:
Pavel Roskin 2016-11-08 14:08:51 -08:00
parent d7fd153951
commit 2dcc69b752
1 changed files with 2 additions and 2 deletions

View File

@ -687,7 +687,7 @@ g_sck_close(int sck)
else
{
log_message(LOG_LEVEL_WARNING, "getsockname() failed on socket %d: %s",
sck, strerror(errno));
sck, g_get_strerror());
if (errno == EBADF || errno == ENOTSOCK)
{
@ -704,7 +704,7 @@ g_sck_close(int sck)
else
{
log_message(LOG_LEVEL_WARNING, "Cannot close socket %d (%s): %s", sck,
sockname, strerror(errno));
sockname, g_get_strerror());
}
#endif