Mercurial > pidgin
comparison src/server.c @ 1089:f0f5c10cce63
[gaim-migrate @ 1099]
added a cancel button to the progress meter
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Mon, 13 Nov 2000 02:58:00 +0000 |
| parents | ed28707debdc |
| children | f168625b63fe |
comparison
equal
deleted
inserted
replaced
| 1088:18a14e6dd0af | 1089:f0f5c10cce63 |
|---|---|
| 45 #include "pixmaps/cancel.xpm" | 45 #include "pixmaps/cancel.xpm" |
| 46 | 46 |
| 47 void serv_login(struct aim_user *user) | 47 void serv_login(struct aim_user *user) |
| 48 { | 48 { |
| 49 struct prpl *p = find_prpl(user->protocol); | 49 struct prpl *p = find_prpl(user->protocol); |
| 50 if (user->gc != NULL) return; | |
| 50 if (p && p->login) { | 51 if (p && p->login) { |
| 51 debug_printf("Logging in using %s\n", (*p->name)()); | 52 debug_printf("Logging in using %s\n", (*p->name)()); |
| 52 (*p->login)(user); | 53 (*p->login)(user); |
| 53 } | 54 } |
| 54 } | 55 } |
