comparison src/protocols/yahoo/yahoo.c @ 2688:98b1ac8ddea3

[gaim-migrate @ 2701] i don't care committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 07 Nov 2001 12:17:31 +0000
parents 2d544f48146d
children 7759f914a009
comparison
equal deleted inserted replaced
2687:2d544f48146d 2688:98b1ac8ddea3
738 set_login_progress(gc, 1, "Connecting"); 738 set_login_progress(gc, 1, "Connecting");
739 739
740 yd->fd = -1; 740 yd->fd = -1;
741 yd->hash = g_hash_table_new(g_str_hash, g_str_equal); 741 yd->hash = g_hash_table_new(g_str_hash, g_str_equal);
742 742
743 if (!proxy_connect(user->proto_opt[USEROPT_PAGERHOST][0] ? 743 if (proxy_connect(user->proto_opt[USEROPT_PAGERHOST][0] ?
744 user->proto_opt[USEROPT_PAGERHOST] : YAHOO_PAGER_HOST, 744 user->proto_opt[USEROPT_PAGERHOST] : YAHOO_PAGER_HOST,
745 user->proto_opt[USEROPT_PAGERPORT][0] ? 745 user->proto_opt[USEROPT_PAGERPORT][0] ?
746 atoi(user->proto_opt[USEROPT_PAGERPORT]) : YAHOO_PAGER_PORT, 746 atoi(user->proto_opt[USEROPT_PAGERPORT]) : YAHOO_PAGER_PORT,
747 yahoo_got_connected, gc)) { 747 yahoo_got_connected, gc) < 0) {
748 hide_login_progress(gc, "Connection problem"); 748 hide_login_progress(gc, "Connection problem");
749 signoff(gc); 749 signoff(gc);
750 return; 750 return;
751 } 751 }
752 752