]> granicus.if.org Git - mutt/commitdiff
Indentation fix
authorEmanuele Giaquinta <e.giaquinta@glauco.it>
Mon, 5 Jan 2009 02:32:59 +0000 (18:32 -0800)
committerEmanuele Giaquinta <e.giaquinta@glauco.it>
Mon, 5 Jan 2009 02:32:59 +0000 (18:32 -0800)
ChangeLog
imap/util.c

index be5d5b475f223c2bf9c74e8a0599a44d1e35427a..255e5401bab6f5237e97db00800ec5597bad069c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-01-04 18:12 -0800  Brendan Cully  <brendan@kublai.com>  (1947c370fcd9)
+
+       * Makefile.am: Remove obsolete make target
+
+       * doc/manual.xml.head: Update copyright in manual
+
 2009-01-04 17:07 -0800  Vincent Lefevre  <vincent@vinc17.org>  (bbe8694acc33)
 
        * po/fr.po: Updated French translation
index 25e15d5e99e14ff8c3578edb03b88f4540478571..45e5673ba7af5ef54a10dc50123ffddfc70aa260 100644 (file)
@@ -792,9 +792,10 @@ void imap_disallow_reopen (CONTEXT *ctx)
 
 int imap_account_match (const ACCOUNT* a1, const ACCOUNT* a2)
 {
-       IMAP_DATA* a1_idata = imap_conn_find (a1, M_IMAP_CONN_NONEW);
-       IMAP_DATA* a2_idata = imap_conn_find (a2, M_IMAP_CONN_NONEW);
-       const ACCOUNT* a1_canon = a1_idata == NULL ? a1 : &a1_idata->conn->account;
-       const ACCOUNT* a2_canon = a2_idata == NULL ? a2 : &a2_idata->conn->account;
-       return mutt_account_match (a1_canon, a2_canon);
+  IMAP_DATA* a1_idata = imap_conn_find (a1, M_IMAP_CONN_NONEW);
+  IMAP_DATA* a2_idata = imap_conn_find (a2, M_IMAP_CONN_NONEW);
+  const ACCOUNT* a1_canon = a1_idata == NULL ? a1 : &a1_idata->conn->account;
+  const ACCOUNT* a2_canon = a2_idata == NULL ? a2 : &a2_idata->conn->account;
+
+  return mutt_account_match (a1_canon, a2_canon);
 }