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-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9db359f1e06d91a9dda2c9b6f1b486d613447f1d;p=neomutt Unbreak imap_check_subscribed after command data type change. --- diff --git a/imap/command.c b/imap/command.c index c6fb63e23..398a932e1 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;