diff src/blist.c @ 7117:943085b0ff8b

[gaim-migrate @ 7684] faceprint pointed out that parse_toc_buddy_list() was used in TOC, so it's now gaim_blist_parse_toc_buddy_list() (sucky function name). committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 02 Oct 2003 02:15:36 +0000
parents 7bee4be16385
children bf630f7dfdcd
line wrap: on
line diff
--- a/src/blist.c	Thu Oct 02 01:58:26 2003 +0000
+++ b/src/blist.c	Thu Oct 02 02:15:36 2003 +0000
@@ -1458,7 +1458,7 @@
 	}
 }
 
-static void parse_toc_buddy_list(GaimAccount *account, char *config)
+void gaim_blist_parse_toc_buddy_list(GaimAccount *account, char *config)
 {
 	char *c;
 	char current[256];
@@ -1833,7 +1833,7 @@
 	if (buf) {
 		buf = g_string_prepend(buf, "toc_set_config {");
 		buf = g_string_append(buf, "}\n");
-		parse_toc_buddy_list(account, buf->str);
+		gaim_blist_parse_toc_buddy_list(account, buf->str);
 		g_string_free(buf, TRUE);
 	}
 }