dovecot-2.0: imap: Renamed X-VSIZE to X-SIZE in STATUS, since IM...

dovecot at dovecot.org dovecot at dovecot.org
Thu May 13 10:36:56 EEST 2010


details:   http://hg.dovecot.org/dovecot-2.0/rev/13af90173e4f
changeset: 11293:13af90173e4f
user:      Timo Sirainen <tss at iki.fi>
date:      Thu May 13 09:27:06 2010 +0200
description:
imap: Renamed X-VSIZE to X-SIZE in STATUS, since IMAP always uses virtual sizes.

diffstat:

 src/imap/imap-status.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r f7ef21ab49ba -r 13af90173e4f src/imap/imap-status.c
--- a/src/imap/imap-status.c	Thu May 13 09:25:41 2010 +0200
+++ b/src/imap/imap-status.c	Thu May 13 09:27:06 2010 +0200
@@ -41,7 +41,7 @@
 			items |= STATUS_UNSEEN;
 		else if (strcmp(item, "HIGHESTMODSEQ") == 0)
 			items |= STATUS_HIGHESTMODSEQ;
-		else if (strcmp(item, "X-VSIZE") == 0)
+		else if (strcmp(item, "X-SIZE") == 0)
 			items |= STATUS_VIRTUAL_SIZE;
 		else if (strcmp(item, "X-GUID") == 0)
 			items_r->guid = TRUE;
@@ -128,7 +128,7 @@
 			    (unsigned long long)status->highest_modseq);
 	}
 	if ((items->mailbox_items & STATUS_VIRTUAL_SIZE) != 0) {
-		str_printfa(str, "X-VSIZE %llu ",
+		str_printfa(str, "X-SIZE %llu ",
 			    (unsigned long long)status->virtual_size);
 	}
 	if (items->guid) {


More information about the dovecot-cvs mailing list