From: Timo Sirainen Date: Mon, 10 May 2004 21:25:42 +0000 (+0300) Subject: index wasn't unlocked initially X-Git-Tag: 1.1.alpha1~4096 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbed340ce8194098d04a7a118f867d80dd1e7331;p=thirdparty%2Fdovecot%2Fcore.git index wasn't unlocked initially --HG-- branch : HEAD --- diff --git a/src/pop3/client.c b/src/pop3/client.c index 3ac77d4cba..2a0fc1cec3 100644 --- a/src/pop3/client.c +++ b/src/pop3/client.c @@ -98,8 +98,10 @@ static int init_mailbox(struct client *client) return FALSE; } - if (!failed) + if (!failed) { + mailbox_transaction_commit(t); return TRUE; + } /* well, sync and try again */ if (mailbox_sync(client->mailbox, 0) < 0) {