From: Eric W. <war...@us...> - 2001-11-07 12:17:34
|
Update of /cvsroot/gaim/gaim/src/protocols/yahoo In directory usw-pr-cvs1:/tmp/cvs-serv9013/protocols/yahoo Modified Files: yahoo.c Log Message: i don't care Index: yahoo.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/yahoo.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- yahoo.c 2001/11/07 11:14:33 1.5 +++ yahoo.c 2001/11/07 12:17:31 1.6 @@ -740,11 +740,11 @@ yd->fd = -1; yd->hash = g_hash_table_new(g_str_hash, g_str_equal); - if (!proxy_connect(user->proto_opt[USEROPT_PAGERHOST][0] ? + if (proxy_connect(user->proto_opt[USEROPT_PAGERHOST][0] ? user->proto_opt[USEROPT_PAGERHOST] : YAHOO_PAGER_HOST, user->proto_opt[USEROPT_PAGERPORT][0] ? atoi(user->proto_opt[USEROPT_PAGERPORT]) : YAHOO_PAGER_PORT, - yahoo_got_connected, gc)) { + yahoo_got_connected, gc) < 0) { hide_login_progress(gc, "Connection problem"); signoff(gc); return; |