comparison libpurple/protocols/msn/servconn.c @ 21121:35b4f1dc4c8d

replace most calls to strerror with calls to g_strerror. strerror will return a locale-specific string in the locale-specific encoding, which isn't guaranteed to be UTF-8. g_strerror will always return a UTF-8 string. I left gg and zephyr untouched, since gg doesn't include glib headers yet, and zephyr does something weird with a #define for strerror. Someone more familliar with those should take a look. And the win32 guys should check and see if I screwed something up, since they had strerror #defined to something else. This should fix #2247 (and maybe some mystery crashes)
author Nathan Walp <nwalp@pidgin.im>
date Sat, 03 Nov 2007 17:52:28 +0000
parents 89c7be36fd61
children 252b96b6a32c
comparison
equal deleted inserted replaced
21120:0cc12e6909e2 21121:35b4f1dc4c8d
400 case EBADF: 400 case EBADF:
401 case EAGAIN: return; 401 case EAGAIN: return;
402 402
403 default: purple_debug_error("msn", "servconn read error," 403 default: purple_debug_error("msn", "servconn read error,"
404 "len: %d, errno: %d, error: %s\n", 404 "len: %d, errno: %d, error: %s\n",
405 len, errno, strerror(errno)); 405 len, errno, g_strerror(errno));
406 msn_servconn_got_error(servconn, 406 msn_servconn_got_error(servconn,
407 MSN_SERVCONN_ERROR_READ); 407 MSN_SERVCONN_ERROR_READ);
408 return; 408 return;
409 } 409 }
410 } 410 }