X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=account.c;h=0813f200f9c92039f3fbaa7bda91ed17663c7815;hp=044aa6c70e51a44ef020afa0771681d32a7e91db;hb=5fbd8a74d24624a118c9b835b136c73b8da076d7;hpb=bbaf5ab9813d18f9912e00fab83195e368e3f0d7 diff --git a/account.c b/account.c index 044aa6c..0813f20 100644 --- a/account.c +++ b/account.c @@ -19,8 +19,8 @@ /* mutt_account_match: compare account info (host/port/user/login) */ int mutt_account_match (const ACCOUNT * a1, const ACCOUNT * a2) { - const char* user = NONULL(MCore.username); - const char* login = NONULL(MCore.username); + const char* user = NONULL(mod_core.username); + const char* login = NONULL(mod_core.username); if (a1->type != a2->type) return 0; @@ -82,7 +82,7 @@ int mutt_account_fromurl(ACCOUNT *account, ciss_url_t *url) * is a set of pointers into account - don't free or edit account until * you've finished with url (make a copy of account if you need it for * a while). */ -void mutt_account_tourl (ACCOUNT * account, ciss_url_t * url) +void mutt_account_tourl(ACCOUNT *account, ciss_url_t *url) { url->scheme = U_UNKNOWN; url->user = NULL; @@ -131,7 +131,7 @@ int mutt_account_getuser (ACCOUNT * account) /* prompt (defaults to unix username), copy into account->user */ else { snprintf(prompt, sizeof(prompt), _("Username at %s: "), account->host); - m_strcpy(account->user, sizeof(account->user), NONULL(MCore.username)); + m_strcpy(account->user, sizeof(account->user), NONULL(mod_core.username)); if (mutt_get_field_unbuffered(prompt, account->user, sizeof(account->user), 0)) return -1;