diff src/protocols/oscar/oscar.c @ 7106:db6bd3e794d8

[gaim-migrate @ 7671] tobase16(), frombase16(), tobase64(), frombase64() -> gaim_base16_encode(), gaim_base16_decode(), gaim_base64_encode(), gaim_base64_decode(). committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 01 Oct 2003 05:56:58 +0000
parents 770233dad86c
children 9220c7490cd1
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c	Wed Oct 01 05:43:14 2003 +0000
+++ b/src/protocols/oscar/oscar.c	Wed Oct 01 05:56:58 2003 +0000
@@ -1820,7 +1820,7 @@
 		char *filename = NULL, *b16 = NULL, *saved_b16 = NULL;
 		GaimBuddy *b = NULL;
 
-		b16 = tobase16(info->iconcsum, info->iconcsumlen);
+		b16 = gaim_base16_encode(info->iconcsum, info->iconcsumlen);
 		b = gaim_find_buddy(gc->account, info->sn);
 		/*
 		 * If for some reason the checksum is valid, but cached file is not..
@@ -3441,7 +3441,7 @@
 		GaimBuddy *b = gaim_find_buddy(gc->account, sn);
 		gaim_buddy_icons_set_for_user(gaim_connection_get_account(gc),
 									  sn, icon, iconlen);
-		b16 = tobase16(iconcsum, iconcsumlen);
+		b16 = gaim_base16_encode(iconcsum, iconcsumlen);
 		if (b16) {
 			gaim_buddy_set_setting(b, "icon_checksum", b16);
 			gaim_blist_save();