dovecot-1.1: imap: Fix to previous login_executable=imap error c...

dovecot at dovecot.org dovecot at dovecot.org
Sun Jul 26 23:34:38 EEST 2009


details:   http://hg.dovecot.org/dovecot-1.1/rev/d2ed3a968ad0
changeset: 8327:d2ed3a968ad0
user:      Timo Sirainen <tss at iki.fi>
date:      Sun Jul 26 16:34:33 2009 -0400
description:
imap: Fix to previous login_executable=imap error check.

diffstat:

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

diffs (12 lines):

diff -r d03a00198120 -r d2ed3a968ad0 src/imap/main.c
--- a/src/imap/main.c	Sun Jul 26 16:32:18 2009 -0400
+++ b/src/imap/main.c	Sun Jul 26 16:34:33 2009 -0400
@@ -177,7 +177,7 @@ static void main_init(void)
         lib_signals_ignore(SIGALRM, FALSE);
 
 	user = getenv("USER");
-	if (user == NULL & IS_STANDALONE())
+	if (user == NULL && IS_STANDALONE())
 		user = getlogin();
 	if (user == NULL) {
 		if (getenv("DOVECOT_MASTER") == NULL)


More information about the dovecot-cvs mailing list