]> git.llucax.com Git - software/mutt-debian.git/blobdiff - account.c
Switch to tokyocabinet (Closes: #530670)
[software/mutt-debian.git] / account.c
index ca65754d5daf4e2ddbad886e0cda2274ae0499bb..b305f788b42efdd7212eeb3ff457fcd31fe698ce 100644 (file)
--- a/account.c
+++ b/account.c
 #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