From: Brendan Cully Date: Fri, 23 Mar 2007 17:32:29 +0000 (-0700) Subject: Reset list.name before each list response in folder browser X-Git-Tag: mutt-1-5-15-rel~47^2~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ae7b24501384be9f4faf8763dcf9c07238106ebd;p=mutt Reset list.name before each list response in folder browser --- diff --git a/ChangeLog b/ChangeLog index 96db3dd1..b3d181b5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,43 @@ +2007-03-22 14:36 +0100 Thomas Roessler (68cfab02b411) + + * curs_main.c: Fix update_index(). + +2007-03-21 11:29 -0700 Brendan Cully (a6da24788400) + + * .cvsignore, Muttrc.head.in, configure.in, contrib/.cvsignore, + doc/.cvsignore, imap/.cvsignore, init.h, intl/.cvsignore, + m4/.cvsignore, mx.c, po/.cvsignore: Merge $umask backout + +2007-03-21 11:26 -0700 Brendan Cully (b9c0a75de5c0) + + * attach.c, globals.h, init.c, init.h, lib.c, mh.c, mx.c: Back out + $umask. + +2007-03-16 15:37 +0100 Christoph Berg (f806a3eb59a8) + + * sendlib.c: Use execvp to call sendmail, useful for people trying + sendmail="ssh host sendmail". + +2007-03-21 10:08 -0700 Christoph Berg (92a0a184005d) + + * Makefile.am, doc/Makefile.am, doc/gen-map-doc, doc/manual.xml.tail, + functions.h, init.h, makedoc-defs.h: Pipe functions.h through cpp -C + for the manual generation; factor out makedoc-defs.h from init.h for + use in functions.h. + +2007-03-21 09:29 -0700 Rocco Rutte (6216dd07b6be) + + * configure.ac: configure.ac: Make SSL tests for OpenSSL and gnutls + behave the same For both this now mentions SMTP as a possible SSL + user and also turns the error for configuring with gnutls without + POP/IMAP/SMTP into a warning as the OpenSSL part does. + +2007-03-20 13:39 -0700 Miroslav Lichvar (b0172175cc89) + + * UPDATING, buffy.c, buffy.h, commands.c, configure.ac, init.h, + main.c, mutt.h, mx.c: Make BUFFY_SIZE a runtime switch + ($check_mbox_size) + 2007-03-20 13:17 -0700 Rocco Rutte (2fbc65f3feb6) * addrbook.c, browser.c, compose.c, crypt-gpgme.c, curs_main.c, diff --git a/imap/browse.c b/imap/browse.c index 75355022..a41e98c0 100644 --- a/imap/browse.c +++ b/imap/browse.c @@ -376,6 +376,7 @@ static int browse_add_list_result (IMAP_DATA* idata, const char* cmd, idata->cmddata = &list; do { + list.name = NULL; rc = imap_cmd_step (idata); if (rc == IMAP_CMD_CONTINUE && list.name)