comparison libpurple/protocols/irc/dcc_send.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 44b4e8bd759b
children fd87b254d3f3
comparison
equal deleted inserted replaced
21120:0cc12e6909e2 21121:35b4f1dc4c8d
249 if (conn == -1) { 249 if (conn == -1) {
250 /* Accepting the connection failed. This could just be related 250 /* Accepting the connection failed. This could just be related
251 * to the nonblocking nature of the listening socket, so we'll 251 * to the nonblocking nature of the listening socket, so we'll
252 * just try again next time */ 252 * just try again next time */
253 /* Let's print an error message anyway */ 253 /* Let's print an error message anyway */
254 purple_debug_warning("irc", "accept: %s\n", strerror(errno)); 254 purple_debug_warning("irc", "accept: %s\n", g_strerror(errno));
255 return; 255 return;
256 } 256 }
257 257
258 purple_input_remove(xfer->watcher); 258 purple_input_remove(xfer->watcher);
259 xfer->watcher = 0; 259 xfer->watcher = 0;