From: Emanuele Giaquinta Date: Thu, 30 Oct 2008 00:02:24 +0000 (+0100) Subject: Remove unused variable in mutt_account_match and fix comment. X-Git-Tag: mutt-1-5-19-rel~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=641e0ba194c31881da49dc23d1f0f4e1ac09bc02;p=mutt Remove unused variable in mutt_account_match and fix comment. --- diff --git a/account.c b/account.c index ca65754d..b305f788 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