diff src/protocols/oscar/oscar.c @ 9753:60705fd4f411

[gaim-migrate @ 10620] Move show_about to gtkdialogs.c and namespace it Remove about.c A few other minor touchups in gtkdialogs.c Make serv_warn pass a gboolean instead of an int committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 15 Aug 2004 17:05:51 +0000
parents c9ac1976ef01
children 4a8bf81b82ae
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c	Sun Aug 15 16:17:29 2004 +0000
+++ b/src/protocols/oscar/oscar.c	Sun Aug 15 17:05:51 2004 +0000
@@ -5535,9 +5535,9 @@
 	return;
 }
 
-static void oscar_warn(GaimConnection *gc, const char *name, int anon) {
+static void oscar_warn(GaimConnection *gc, const char *name, gboolean anonymous) {
 	OscarData *od = (OscarData *)gc->proto_data;
-	aim_im_warn(od->sess, od->conn, name, anon ? AIM_WARN_ANON : 0);
+	aim_im_warn(od->sess, od->conn, name, anonymous ? AIM_WARN_ANON : 0);
 }
 
 static void oscar_add_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) {