X-Git-Url: https://git.llucax.com/software/mutt-debian.git/blobdiff_plain/14c29200cb58d3c4a0830265f2433849781858d0..228ef588576668a0ae8d0d2d89ad9ab672b35282:/account.c diff --git a/account.c b/account.c index ca65754..b305f78 100644 --- a/account.c +++ b/account.c @@ -26,11 +26,10 @@ #include "account.h" #include "url.h" -/* mutt_account_match: compare account info (host/port/user/login) */ +/* mutt_account_match: compare account info (host/port/user) */ int mutt_account_match (const ACCOUNT* a1, const ACCOUNT* a2) { const char* user = NONULL (Username); - const char* login = NONULL (Username); if (a1->type != a2->type) return 0; @@ -44,8 +43,6 @@ int mutt_account_match (const ACCOUNT* a1, const ACCOUNT* a2) { if (ImapUser) user = ImapUser; - if (ImapLogin) - login = ImapLogin; } #endif