Mercurial > pidgin.yaz
comparison src/connection.c @ 5581:3a9b54f260e3
[gaim-migrate @ 5985]
Commit'em if you got'em.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sat, 31 May 2003 04:35:54 +0000 |
parents | 113090160626 |
children | 6500a6c8d679 |
comparison
equal
deleted
inserted
replaced
5580:86456ec3ca25 | 5581:3a9b54f260e3 |
---|---|
87 | 87 |
88 if ((prpl_info->options & OPT_PROTO_NO_PASSWORD) && | 88 if ((prpl_info->options & OPT_PROTO_NO_PASSWORD) && |
89 !(prpl_info->options & OPT_PROTO_PASSWORD_OPTIONAL) && | 89 !(prpl_info->options & OPT_PROTO_PASSWORD_OPTIONAL) && |
90 gaim_account_get_password(account) == NULL) { | 90 gaim_account_get_password(account) == NULL) { |
91 | 91 |
92 gaim_debug(GAIM_DEBUG_INFO, "connection", "Requestin password\n"); | |
93 | |
92 if (ops != NULL && ops->request_pass != NULL) | 94 if (ops != NULL && ops->request_pass != NULL) |
93 ops->request_pass(gc); | 95 ops->request_pass(gc); |
94 | 96 |
95 return; | 97 return; |
96 } | 98 } |
97 | 99 |
98 gaim_connection_set_state(gc, GAIM_CONNECTING); | 100 gaim_connection_set_state(gc, GAIM_CONNECTING); |
101 | |
102 gaim_debug(GAIM_DEBUG_INFO, "connection", "Calling serv_login\n"); | |
99 | 103 |
100 serv_login(account); | 104 serv_login(account); |
101 } | 105 } |
102 | 106 |
103 void | 107 void |