diff libpurple/protocols/oscar/oscar.c @ 22112:5b6d6ea542b8

Remove a variable that isn't used anywhere, if it was supposed to do something feel free to add it back and make it do that. Also, fix a compile error. Comparing a string literal and a const char * with == likely doesn't do what was intended here.
author Etan Reisner <pidgin@unreliablesource.net>
date Tue, 15 Jan 2008 04:58:42 +0000
parents 06c58cffd4c4
children 3afd04d5f9d6
line wrap: on
line diff
--- a/libpurple/protocols/oscar/oscar.c	Mon Jan 14 23:29:52 2008 +0000
+++ b/libpurple/protocols/oscar/oscar.c	Tue Jan 15 04:58:42 2008 +0000
@@ -1795,7 +1795,7 @@
 		purple_prpl_got_user_status_deactive(account, info->sn, OSCAR_STATUS_ID_MOBILE);
 	}
 
-	if (status_id == OSCAR_STATUS_ID_AVAILABLE)
+	if (!strcmp(status_id, OSCAR_STATUS_ID_AVAILABLE))
 	{
 		char *message = NULL;
 
@@ -4456,7 +4456,6 @@
 	PurplePresence *presence;
 	PurpleStatusType *status_type;
 	PurpleStatusPrimitive primitive;
-	gboolean invisible;
 
 	char *htmlinfo;
 	char *info_encoding = NULL;
@@ -4471,7 +4470,6 @@
 	status_type = purple_status_get_type(status);
 	primitive = purple_status_type_get_primitive(status_type);
 	presence = purple_account_get_presence(account);
-	invisible = purple_presence_is_status_primitive_active(presence, PURPLE_STATUS_INVISIBLE);
 
 	if (!setinfo)
 	{