comparison libpurple/protocols/silc10/silc.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 3162c5836fb8
children 6de09629f091
comparison
equal deleted inserted replaced
21120:0cc12e6909e2 21121:35b4f1dc4c8d
329 g_snprintf(prd, sizeof(prd), "%s" G_DIR_SEPARATOR_S "private_key.prv", silcpurple_silcdir()); 329 g_snprintf(prd, sizeof(prd), "%s" G_DIR_SEPARATOR_S "private_key.prv", silcpurple_silcdir());
330 if (!silc_load_key_pair((char *)purple_account_get_string(account, "public-key", pkd), 330 if (!silc_load_key_pair((char *)purple_account_get_string(account, "public-key", pkd),
331 (char *)purple_account_get_string(account, "private-key", prd), 331 (char *)purple_account_get_string(account, "private-key", prd),
332 (gc->password == NULL) ? "" : gc->password, &client->pkcs, 332 (gc->password == NULL) ? "" : gc->password, &client->pkcs,
333 &client->public_key, &client->private_key)) { 333 &client->public_key, &client->private_key)) {
334 g_snprintf(pkd, sizeof(pkd), _("Could not load SILC key pair: %s"), strerror(errno)); 334 g_snprintf(pkd, sizeof(pkd), _("Could not load SILC key pair: %s"), g_strerror(errno));
335 purple_connection_error(gc, pkd); 335 purple_connection_error(gc, pkd);
336 return; 336 return;
337 } 337 }
338 338
339 sg = silc_calloc(1, sizeof(*sg)); 339 sg = silc_calloc(1, sizeof(*sg));