From a09aefe16dc9b4edaaaaabbe37c72c2b7907e613 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 14 Apr 2010 18:53:36 +0300 Subject: [PATCH] raw: Fixed opening raw mailbox with filename. --HG-- branch : HEAD --- src/lib-storage/index/raw/raw-storage.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib-storage/index/raw/raw-storage.c b/src/lib-storage/index/raw/raw-storage.c index 827923d0d5..cac1538190 100644 --- a/src/lib-storage/index/raw/raw-storage.c +++ b/src/lib-storage/index/raw/raw-storage.c @@ -68,6 +68,7 @@ static int raw_mailbox_open(struct mailbox *box) return index_storage_mailbox_open(box, FALSE); } + box->path = box->name; mbox->have_filename = TRUE; fd = open(box->path, O_RDONLY); if (fd == -1) { -- 2.47.3