dovecot-2.1: virtual: Compile fix for recent mailbox_exists() ch...

dovecot at dovecot.org dovecot at dovecot.org
Mon Sep 12 14:41:03 EEST 2011


details:   http://hg.dovecot.org/dovecot-2.1/rev/a2c62701a1c4
changeset: 13450:a2c62701a1c4
user:      Timo Sirainen <tss at iki.fi>
date:      Mon Sep 12 14:40:49 2011 +0300
description:
virtual: Compile fix for recent mailbox_exists() change.

diffstat:

 src/plugins/virtual/virtual-storage.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (19 lines):

diff -r f4899179ad4c -r a2c62701a1c4 src/plugins/virtual/virtual-storage.c
--- a/src/plugins/virtual/virtual-storage.c	Mon Sep 12 14:32:37 2011 +0300
+++ b/src/plugins/virtual/virtual-storage.c	Mon Sep 12 14:40:49 2011 +0300
@@ -259,11 +259,11 @@
 	}
 }
 
-static int virtual_mailbox_exists(struct mailbox *box, bool auto_boxes,
-				  enum mailbox_existence *existence_r)
+static int
+virtual_mailbox_exists(struct mailbox *box, bool auto_boxes ATTR_UNUSED,
+		       enum mailbox_existence *existence_r)
 {
-	return index_storage_mailbox_exists_full(box, auto_boxes,
-						 VIRTUAL_CONFIG_FNAME,
+	return index_storage_mailbox_exists_full(box, VIRTUAL_CONFIG_FNAME,
 						 existence_r);
 }
 


More information about the dovecot-cvs mailing list