summaryrefslogtreecommitdiff
path: root/pith/mailcmd.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2021-12-24 14:36:53 -0700
committerEduardo Chappa <chappa@washington.edu>2021-12-24 14:36:53 -0700
commit1e6c61f80a9e2c5a456477ea42732f63d3b3118f (patch)
tree2be058896c4fdc25b10fefbb7f0f40ae08cfcace /pith/mailcmd.c
parent21cee6130dc8fcd82b50c2cee347eb5c37ff457b (diff)
downloadalpine-1e6c61f80a9e2c5a456477ea42732f63d3b3118f.tar.xz
* 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.
Diffstat (limited to 'pith/mailcmd.c')
-rw-r--r--pith/mailcmd.c2
1 files changed, 1 insertions, 1 deletions
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);