Merge pull request #479 from proski/strerror

Use g_get_strerror() instead of strerror(errno) for portability
This commit is contained in:
jsorg71 2016-11-09 15:26:28 -08:00 committed by GitHub
commit 46e1173bd9

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