Skip to content

Commit

Permalink
imap/conversations.c: compress
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov committed Sep 24, 2024
1 parent ef6ab05 commit e949d7d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions imap/conversations.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,10 +465,9 @@ EXPORTED int conversations_open_user(const char *userid, int shared,
EXPORTED int conversations_open_mbox(const char *mboxname, int shared, struct conversations_state **statep)
{
char *path = conversations_getmboxpath(mboxname);
int r;
if (!path) return IMAP_MAILBOX_BADNAME;
char *userid = mboxname_to_userid(mboxname);
r = conversations_open_path(path, userid, shared, statep);
int r = conversations_open_path(path, userid, shared, statep);
free(userid);
free(path);
return r;
Expand Down

0 comments on commit e949d7d

Please sign in to comment.