[dovecot-cvs] dovecot/src/master master-settings.c,1.85,1.86

cras at dovecot.org cras at dovecot.org
Sun Aug 7 15:51:15 EEST 2005


Update of /var/lib/cvs/dovecot/src/master
In directory talvi:/tmp/cvs-serv30814/src/master

Modified Files:
	master-settings.c 
Log Message:
Section closing wasn't done properly. Patch by Tom Alsberg



Index: master-settings.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.c,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -d -r1.85 -r1.86
--- master-settings.c	14 May 2005 20:32:06 -0000	1.85
+++ master-settings.c	7 Aug 2005 12:51:12 -0000	1.86
@@ -901,7 +901,7 @@
 
 	if (type == NULL) {
 		/* section closing */
-		if (--ctx->level > 0) {
+		if (ctx->level-- > 0) {
 			ctx->type = ctx->parent_type;
 			ctx->protocol = MAIL_PROTOCOL_ANY;
 



More information about the dovecot-cvs mailing list