]> granicus.if.org Git - neomutt/commitdiff
Remove unused variable in mutt_account_match and fix comment.
authorEmanuele Giaquinta <e.giaquinta@glauco.it>
Thu, 30 Oct 2008 00:02:24 +0000 (01:02 +0100)
committerEmanuele Giaquinta <e.giaquinta@glauco.it>
Thu, 30 Oct 2008 00:02:24 +0000 (01:02 +0100)
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