diff src/protocols/simple/simple.c @ 11837:fa742ad8068c

[gaim-migrate @ 14128] Don't pass our active GaimStatus to the login PRPL callback... It's not used by most PRPLS, and that ones that DO use it probably shouldn't. Ideally the PRPLs won't store any info about their own status, message, etc. All that should be in the core status API, and when it needs some info it should query the core to get it. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 26 Oct 2005 05:40:02 +0000
parents 11e95968c9ff
children cbebda5f019c
line wrap: on
line diff
--- a/src/protocols/simple/simple.c	Wed Oct 26 05:22:26 2005 +0000
+++ b/src/protocols/simple/simple.c	Wed Oct 26 05:40:02 2005 +0000
@@ -1244,7 +1244,7 @@
 	}
 }
 
-static void simple_login(GaimAccount *account, GaimStatus *status)
+static void simple_login(GaimAccount *account)
 {
 	GaimConnection *gc;
 	struct simple_account_data *sip;
@@ -1275,6 +1275,7 @@
 
 	gaim_connection_update_progress(gc, _("Connecting"), 1, 2);
 
+	/* TODO: Set the status correctly. */
 	sip->status = g_strdup("available");
 
 	if(!gaim_account_get_bool(account, "useproxy", FALSE)) {