From a999edabd13e2227d9da939aaf1b2c5e12eb7051 Mon Sep 17 00:00:00 2001 From: pdmef Date: Thu, 10 Mar 2005 15:11:29 +0000 Subject: [PATCH] Rocco Rutte: bugfix for in connection with (noted by Elimar Riesebieter) git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@164 e385b8ad-14ed-0310-8656-cc95a2468c6d --- curs_main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/curs_main.c b/curs_main.c index 45952ef..9969bbc 100644 --- a/curs_main.c +++ b/curs_main.c @@ -1277,7 +1277,11 @@ CHECK_IMAP_ACL(IMAP_ACL_DELETE); } else #endif - mutt_buffy (buf, sizeof (buf)); + { + if (Context && Context->path) + strncpy (buf, Context->path, sizeof (buf)); + mutt_buffy (buf, sizeof (buf)); + } if ( op == OP_SIDEBAR_OPEN ) { if(!CurBuffy) -- 2.20.1