X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=account.c;h=5270c2e57a43663d4dfca7b710f7891d63b28e8b;hp=7c8fa3c109b8e01e76f91a39b96516d9dd29f5ef;hb=ecaab35b973fbceb58b5ed174971c82762cc0199;hpb=bbc4fd52516a8afefbd14c77e34f8389d6f0a6ed diff --git a/account.c b/account.c index 7c8fa3c..5270c2e 100644 --- a/account.c +++ b/account.c @@ -13,15 +13,16 @@ # include "config.h" #endif +#include +#include +#include +#include + #include "mutt.h" #include "enter.h" -#include "ascii.h" #include "account.h" #include "url.h" -#include "lib/mem.h" -#include "lib/intl.h" -#include "lib/str.h" /* mutt_account_match: compare account info (host/port/user/login) */ int mutt_account_match (const ACCOUNT * a1, const ACCOUNT * a2) @@ -38,9 +39,9 @@ int mutt_account_match (const ACCOUNT * a1, const ACCOUNT * a2) #ifdef USE_IMAP if (a1->type == M_ACCT_TYPE_IMAP) { - if (ImapUser) + if (ImapUser && (ImapUser[0] != '\0')) user = ImapUser; - if (ImapLogin) + if (ImapLogin && (ImapLogin[0] != '\0')) login = ImapLogin; } #endif @@ -146,7 +147,7 @@ int mutt_account_getuser (ACCOUNT * account) if (account->flags & M_ACCT_USER) return 0; #ifdef USE_IMAP - else if ((account->type == M_ACCT_TYPE_IMAP) && ImapUser) + else if ((account->type == M_ACCT_TYPE_IMAP) && ImapUser && (ImapUser[0] != '\0')) strfcpy (account->user, ImapUser, sizeof (account->user)); #endif #ifdef USE_POP @@ -179,7 +180,7 @@ int mutt_account_getlogin (ACCOUNT* account) #ifdef USE_IMAP else if (account->type == M_ACCT_TYPE_IMAP) { - if (ImapLogin) { + if (ImapLogin && (ImapLogin[0] != '\0')) { strfcpy (account->login, ImapLogin, sizeof (account->login)); account->flags |= M_ACCT_LOGIN; }