From: Brendan Cully Date: Thu, 10 Aug 2006 22:16:11 +0000 (+0000) Subject: Unbreak imap_check_subscribed after command data type change. X-Git-Tag: mutt-1-5-13-rel~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=478ac8dfdf88b56c5e951826e07552db9d573b8c;p=mutt Unbreak imap_check_subscribed after command data type change. --- diff --git a/imap/command.c b/imap/command.c index c6fb63e2..398a932e 100644 --- a/imap/command.c +++ b/imap/command.c @@ -689,6 +689,7 @@ static void cmd_parse_lsub (IMAP_DATA* idata, char* s) if (!option (OPTIMAPCHECKSUBSCRIBED)) return; + idata->cmdtype = IMAP_CT_LIST; idata->cmddata = &list; cmd_parse_list (idata, s); idata->cmddata = NULL;