From 1e6c61f80a9e2c5a456477ea42732f63d3b3118f Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Fri, 24 Dec 2021 14:36:53 -0700 Subject: * Correct release notes. Based on report by Dennis Davis. * Correct spellings in imap/Makefile. Contributed by Gerald Pfeifer. * Change comparison of ps_global->inbox_name from strcmp to strucmp in do_broach_folder. * When an invitation does not have a timezone in the date of the event, but the date is in GMT, adjust the date to local time. --- pith/mailcmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pith/mailcmd.c') diff --git a/pith/mailcmd.c b/pith/mailcmd.c index c53afeb4..4ddd26f6 100644 --- a/pith/mailcmd.c +++ b/pith/mailcmd.c @@ -831,7 +831,7 @@ do_broach_folder(char *newfolder, CONTEXT_S *new_context, MAILSTREAM **streamp, dprint((8, "Old folder: \"%s\"\n", old_folder == NULL ? "" : old_folder)); if(old_folder != NULL){ - if(strcmp(old_folder, ps_global->inbox_name) == 0){ + if(strucmp(old_folder, ps_global->inbox_name) == 0){ ps_global->mail_stream = sp_inbox_stream(); ps_global->msgmap = sp_msgmap(ps_global->mail_stream); -- cgit v1.2.3-54-g00ecf