comparison src/server.c @ 9899:8651abf08dd5

[gaim-migrate @ 10790] Use gaim_account_get_protocol_name() in 2 more places committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 28 Aug 2004 13:54:55 +0000
parents 60705fd4f411
children fb08a0973b3e
comparison
equal deleted inserted replaced
9898:8974a8544279 9899:8651abf08dd5
63 gaim_notify_error(NULL, NULL, 63 gaim_notify_error(NULL, NULL,
64 _("Please enter your password"), NULL); 64 _("Please enter your password"), NULL);
65 return; 65 return;
66 } 66 }
67 67
68 gaim_debug(GAIM_DEBUG_INFO, "server", 68 gaim_debug_info("server", PACKAGE " " VERSION
69 PACKAGE " " VERSION " logging in %s using %s\n", 69 " logging in %s using %s\n",
70 account->username, p->info->name); 70 gaim_account_get_username(account),
71 gaim_account_get_protocol_name(account));
71 72
72 gaim_signal_emit(gaim_accounts_get_handle(), 73 gaim_signal_emit(gaim_accounts_get_handle(),
73 "account-connecting", account); 74 "account-connecting", account);
74 prpl_info->login(account); 75 prpl_info->login(account);
75 } 76 }