comparison src/protocols/gg/gg.c @ 10401:3e4ecbdf8d0a

[gaim-migrate @ 11638] Stuff compiles again, if that's what you wanted stuff to do. It works a bit too. I fixed one crash in oscar, only to reveal another that I didnn't fix (tooltips). Most protocols still need updating to actually log in in the specified state, TCL needs some love for gaim_account_connect, perl probably does too but that needs more love anyway. The reconnect plugin could be more intelligent too, as could gaim-remote. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Tue, 21 Dec 2004 01:48:30 +0000
parents b4b9dabdd7c7
children 3fcfab5f0cc6
comparison
equal deleted inserted replaced
10400:6a043ae92db6 10401:3e4ecbdf8d0a
1 /* 1 /*
2 * gaim - Gadu-Gadu Protocol Plugin 2 * gaim - Gadu-Gadu Protocol Plugin
3 * $Id: gg.c 11624 2004-12-17 23:30:38Z thekingant $ 3 * $Id: gg.c 11638 2004-12-21 01:48:30Z nosnilmot $
4 * 4 *
5 * Copyright (C) 2001 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL> 5 * Copyright (C) 2001 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL>
6 * 6 *
7 * This program is free software; you can redistribute it and/or modify 7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
839 gaim_connection_error(gc, _("Unable to ping server")); 839 gaim_connection_error(gc, _("Unable to ping server"));
840 return; 840 return;
841 } 841 }
842 } 842 }
843 843
844 static void agg_login(GaimAccount *account) 844 static void agg_login(GaimAccount *account, GaimStatus *status)
845 { 845 {
846 GaimConnection *gc = gaim_account_get_connection(account); 846 GaimConnection *gc = gaim_account_get_connection(account);
847 struct agg_data *gd = gc->proto_data = g_new0(struct agg_data, 1); 847 struct agg_data *gd = gc->proto_data = g_new0(struct agg_data, 1);
848 char buf[80]; 848 char buf[80];
849 849