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

dovecot at dovecot.org dovecot at dovecot.org
Sun Jul 26 21:14:40 EEST 2009


details:   http://hg.dovecot.org/dovecot-1.2/rev/8f376b8ce81d
changeset: 9244:8f376b8ce81d
user:      Timo Sirainen <tss at iki.fi>
date:      Sun Jul 26 14:14:34 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 adda2c5bc0d0 -r 8f376b8ce81d src/imap/main.c
--- a/src/imap/main.c	Sun Jul 26 14:12:15 2009 -0400
+++ b/src/imap/main.c	Sun Jul 26 14:14:34 2009 -0400
@@ -179,7 +179,7 @@ static void main_init(void)
         lib_signals_ignore(SIGALRM, FALSE);
 
 	username = getenv("USER");
-	if (username == NULL & IS_STANDALONE())
+	if (username == NULL && IS_STANDALONE())
 		username = getlogin();
 	if (username == NULL) {
 		if (getenv("DOVECOT_MASTER") == NULL)


More information about the dovecot-cvs mailing list