Fix tincd terminating immediately on Windows.
[tinc] / src / tincd.c
index 7336a5f..1feab40 100644 (file)
@@ -246,9 +246,7 @@ static bool parse_options(int argc, char **argv) {
 }
 
 static bool drop_privs(void) {
-#ifdef HAVE_MINGW
-       return false;
-#else
+#ifndef HAVE_MINGW
        uid_t uid = 0;
        if (switchuser) {
                struct passwd *pw = getpwnam(switchuser);