]> granicus.if.org Git - mutt/commitdiff
Don't skip the last connection in imap_complete_hosts
authorBrendan Cully <brendan@kublai.com>
Wed, 14 Mar 2007 19:23:13 +0000 (12:23 -0700)
committerBrendan Cully <brendan@kublai.com>
Wed, 14 Mar 2007 19:23:13 +0000 (12:23 -0700)
ChangeLog
imap/imap.c

index d862f94bfba212c249f025bd78f6ea7576f15355..f31ccc454ec33995fa76e02edd16b4b204e21c22 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+2007-03-14 11:33 -0700  Rocco Rutte  <pdmef@gmx.net>  (09f73968d97a)
+
+       * rfc822.c: Fix return value for rfc822_write_address() The strcat
+       cleanup changed the return type from void to int but didn't provide
+       a return value for the case of bogus function arguments.
+
+2007-03-13 12:39 -0700  TAKIZAWA Takashi  <taki@luna.email.ne.jp>  (dc8f0c4a6287)
+
+       * help.c: Use strwidth instead of strlen when generating help strings.
+       This fixes word-wrap with multibyte strings (closes: #1503)
+
+2007-03-13 22:40 -0700  Brendan Cully  <brendan@kublai.com>  (61b2845af4da)
+
+       * Makefile.am, Muttrc.head, Muttrc.head.in, configure.in: Fully expand
+       $docdir when building Muttrc (closes: #2832)
+
+       * makedoc.c: Make makedoc return 0 on success (be there dragons here?)
+
+2007-03-13 09:22 -0700  Vincent Lefevre  <vincent@vinc17.org>  (7e9c45589254)
+
+       * po/fr.po: Updated French translation.
+
 2007-03-13 10:58 +0100  Thomas Roessler  <roessler@does-not-exist.org>  (f4d3704813fd)
 
        * charset.c: Clean up the strcat cleanup
index 50367309398e2754d9f67039d51db0c0ac07f1ce..5ec4f0ff0063f3888078b641a7bcb4b8f648c199 100644 (file)
@@ -1827,7 +1827,7 @@ imap_complete_hosts (char *dest, size_t len)
     }
   }
   
-  for (conn = mutt_socket_head (); conn && conn->next; conn = conn->next)
+  for (conn = mutt_socket_head (); conn; conn = conn->next)
   {
     ciss_url_t url;
     char urlstr[LONG_STRING];