dovecot-1.1: Fixed non-existing mail_gid error message to actual...

dovecot at dovecot.org dovecot at dovecot.org
Wed Jul 29 21:49:50 EEST 2009


details:   http://hg.dovecot.org/dovecot-1.1/rev/9102291ebfc1
changeset: 8335:9102291ebfc1
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Jul 29 14:49:14 2009 -0400
description:
Fixed non-existing mail_gid error message to actually show the gid, not uid.
Patch by Pascal Volk.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/master/master-settings.c |    2 +-

diffs (12 lines):

diff -r d2ba0b6b4298 -r 9102291ebfc1 src/master/master-settings.c
--- a/src/master/master-settings.c	Mon Jul 27 02:09:15 2009 -0400
+++ b/src/master/master-settings.c	Wed Jul 29 14:49:14 2009 -0400
@@ -742,7 +742,7 @@ static bool settings_verify(struct setti
 	}
 	if (*set->mail_gid != '\0') {
 		if (!parse_gid(set->mail_gid, &set->mail_gid_t)) {
-			i_error("Non-existing mail_gid: %s", set->mail_uid);
+			i_error("Non-existing mail_gid: %s", set->mail_gid);
 			return FALSE;
 		}
 	}


More information about the dovecot-cvs mailing list