diff src/protocols/jabber/buddy.c @ 7108:6faeeecab0dc

[gaim-migrate @ 7673] Put the rest of util.[ch] into namespaces and sectioned off the functions. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 01 Oct 2003 07:15:53 +0000
parents db6bd3e794d8
children 6c8706109f92
line wrap: on
line diff
--- a/src/protocols/jabber/buddy.c	Wed Oct 01 06:17:28 2003 +0000
+++ b/src/protocols/jabber/buddy.c	Wed Oct 01 07:15:53 2003 +0000
@@ -535,7 +535,7 @@
 	if(resource_name) {
 		jbr = jabber_buddy_find_resource(jb, resource_name);
 		if(jbr) {
-			char *purdy = strdup_withhtml(jbr->status);
+			char *purdy = gaim_strdup_withhtml(jbr->status);
 			g_string_append_printf(info_text, "<b>%s:</b> %s%s%s<br/>\n",
 					_("Status"), jabber_get_state_string(jbr->state),
 					purdy ? ": " : "",
@@ -549,7 +549,7 @@
 		for(resources = jb->resources; resources; resources = resources->next) {
 			char *purdy;
 			jbr = resources->data;
-			purdy = strdup_withhtml(jbr->status);
+			purdy = gaim_strdup_withhtml(jbr->status);
 			g_string_append_printf(info_text, "<b>%s:</b> %s<br/>\n",
 					_("Resource"), jbr->name);
 			g_string_append_printf(info_text, "<b>%s:</b> %s%s%s<br/><br/>\n",