changeset 3522:3d9667c5b133 HEAD

Section closing wasn't done properly. Patch by Tom Alsberg
author Timo Sirainen <tss@iki.fi>
date Sun, 07 Aug 2005 15:51:12 +0300
parents 3ccf9db0d117
children d1ed3b3548db
files src/master/master-settings.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/master/master-settings.c	Sun Aug 07 14:50:17 2005 +0300
+++ b/src/master/master-settings.c	Sun Aug 07 15:51:12 2005 +0300
@@ -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;