diff src/server.c @ 7107:9220c7490cd1

[gaim-migrate @ 7672] This is a big one: normalize() -> gaim_normalize, linkify_text() -> gaim_markup_linkify(), gaim_get_size_string() -> gaim_str_size_to_units(), and moved clean_pid() to main.c. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 01 Oct 2003 06:17:28 +0000
parents 0ffd540660df
children 6faeeecab0dc
line wrap: on
line diff
--- a/src/server.c	Wed Oct 01 05:56:58 2003 +0000
+++ b/src/server.c	Wed Oct 01 06:17:28 2003 +0000
@@ -878,7 +878,7 @@
 	 * "We're not worthy! We're not worthy!"
 	 */
 	if (gaim_prefs_get_bool("/gaim/gtk/conversations/show_urls_as_links")) {
-		buffy = linkify_text(message);
+		buffy = gaim_markup_linkify(message);
 		g_free(message);
 		message = buffy;
 	}
@@ -1093,9 +1093,9 @@
 	if (signon && (GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->options &
 				   OPT_PROTO_CORRECT_TIME)) {
 
-		char *tmp = g_strdup(normalize(name));
+		char *tmp = g_strdup(gaim_normalize(name));
 		if (!gaim_utf8_strcasecmp(tmp,
-				normalize(gaim_account_get_username(account)))) {
+				gaim_normalize(gaim_account_get_username(account)))) {
 
 			gc->evil = evil;
 			gc->login_time_official = signon;
@@ -1485,7 +1485,7 @@
 
 
 	if (gaim_prefs_get_bool("/gaim/gtk/conversations/show_urls_as_links"))
-		buf = linkify_text(message);
+		buf = gaim_markup_linkify(message);
 	else
 		buf = g_strdup(message);