comparison src/server.c @ 2762:8eb8db9a8449

[gaim-migrate @ 2775] this always bothered me committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 19 Nov 2001 11:19:52 +0000
parents e841b14b5b89
children 8a918df1a5ed
comparison
equal deleted inserted replaced
2761:367d19133917 2762:8eb8db9a8449
52 if (!strlen(user->password) && !(p->options & OPT_PROTO_NO_PASSWORD)) { 52 if (!strlen(user->password) && !(p->options & OPT_PROTO_NO_PASSWORD)) {
53 do_error_dialog(_("Please enter your password"), _("Signon Error")); 53 do_error_dialog(_("Please enter your password"), _("Signon Error"));
54 return; 54 return;
55 } 55 }
56 56
57 debug_printf("Logging in using %s\n", p->name()); 57 debug_printf(PACKAGE " " VERSION " logging in %s using %s\n", user->username, p->name());
58 p->login(user); 58 p->login(user);
59 } else { 59 } else {
60 do_error_dialog(_("You cannot log this account in; you do not have " 60 do_error_dialog(_("You cannot log this account in; you do not have "
61 "the protocol it uses loaded, or the protocol does " 61 "the protocol it uses loaded, or the protocol does "
62 "not have a login function."), _("Login Error")); 62 "not have a login function."), _("Login Error"));