diff src/prefs.c @ 2048:3366311426df

[gaim-migrate @ 2058] little things committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 17 Jun 2001 08:37:44 +0000
parents 1bfef3e8ba63
children a4367a6478eb
line wrap: on
line diff
--- a/src/prefs.c	Sun Jun 17 04:35:09 2001 +0000
+++ b/src/prefs.c	Sun Jun 17 08:37:44 2001 +0000
@@ -1040,7 +1040,7 @@
 	while (c) {
 		if (c - text > len - 30)
 			break;	/* assume no chat rooms 30 from end, padding */
-		if (!strncasecmp(AOL_SRCHSTR, c, strlen(AOL_SRCHSTR))) {
+		if (!g_strncasecmp(AOL_SRCHSTR, c, strlen(AOL_SRCHSTR))) {
 			char *t;
 			int len = 0;
 			int exchange;
@@ -1096,7 +1096,7 @@
 
 	while (crs) {
 		cr2 = (struct chat_room *)crs->data;
-		if (!strcasecmp(cr->name, cr2->name))
+		if (!g_strcasecmp(cr->name, cr2->name))
 			 return;
 		crs = crs->next;
 	}
@@ -1706,7 +1706,7 @@
 
 static struct away_message *cur_message;
 static GtkWidget *away_text;
-static GtkWidget *make_away_button = NULL;;
+static GtkWidget *make_away_button = NULL;
 
 void away_list_clicked(GtkWidget *widget, struct away_message *a)
 {