comparison plugins/yay/yay.c @ 1503:1a1a58499a1c

[gaim-migrate @ 1513] hi committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 25 Feb 2001 20:09:31 +0000
parents a054c28735fb
children 0dd012166152
comparison
equal deleted inserted replaced
1502:9be5ac652d51 1503:1a1a58499a1c
291 291
292 debug_printf("Yahoo: logged in %s\n", gc->username); 292 debug_printf("Yahoo: logged in %s\n", gc->username);
293 account_online(gc); 293 account_online(gc);
294 serv_finish_login(gc); 294 serv_finish_login(gc);
295 295
296 yd->active_id = g_strdup(gc->username);
296 if (bud_list_cache_exists(gc)) 297 if (bud_list_cache_exists(gc))
297 do_import(NULL, gc); 298 do_import(NULL, gc);
298 299
299 if (ctxt->buddies) { 300 if (ctxt->buddies) {
300 struct yahoo_buddy **buddies; 301 struct yahoo_buddy **buddies;
304 305
305 if (!find_buddy(gc, bud->id)) 306 if (!find_buddy(gc, bud->id))
306 add_buddy(gc, bud->group, bud->id, bud->id); 307 add_buddy(gc, bud->group, bud->id, bud->id);
307 } 308 }
308 } 309 }
309
310 yd->active_id = g_strdup(gc->username);
311 310
312 gc->inpa = gdk_input_add(ctxt->sockfd, GDK_INPUT_READ | GDK_INPUT_EXCEPTION, 311 gc->inpa = gdk_input_add(ctxt->sockfd, GDK_INPUT_READ | GDK_INPUT_EXCEPTION,
313 yahoo_callback, gc); 312 yahoo_callback, gc);
314 } 313 }
315 314