]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
fix
authorTimo Sirainen <tss@iki.fi>
Tue, 18 Feb 2003 20:58:30 +0000 (22:58 +0200)
committerTimo Sirainen <tss@iki.fi>
Tue, 18 Feb 2003 20:58:30 +0000 (22:58 +0200)
--HG--
branch : HEAD

src/imap/main.c

index 723e43e934f8937128597e745203e1f3a2f5e3e2..ecbbdf0a25bd8d8e5a0b13beee18f7f3e215001d 100644 (file)
@@ -32,7 +32,7 @@ static void open_logfile(void)
 
        user = getenv("USER");
        if (user == NULL) {
-               if (!IS_STANDALONE())
+               if (IS_STANDALONE())
                        user = getlogin();
                if (user == NULL)
                        user = "??";
@@ -76,7 +76,7 @@ static void main_init(void)
 
        user = getenv("USER");
        if (user == NULL) {
-               if (!IS_STANDALONE())
+               if (IS_STANDALONE())
                        user = getlogin();
                if (user == NULL)
                        i_fatal("USER environment missing");