Fix invalid getuid() call on Windows.
authorEtienne Dechamps <etienne@edechamps.fr>
Sat, 14 Mar 2015 16:07:54 +0000 (16:07 +0000)
committerEtienne Dechamps <etienne@edechamps.fr>
Sat, 14 Mar 2015 16:07:54 +0000 (16:07 +0000)
This is breaking the Windows build. Regression was introduced in
268e3ffca7b45cfc736e1bc9bec7a113c6c45701.

src/fsck.c

index 8df95ec..205a599 100644 (file)
@@ -155,7 +155,11 @@ static void check_conffile(const char *fname, bool server) {
 }
 
 int fsck(const char *argv0) {
+#ifdef HAVE_MINGW
+       int uid = 0;
+#else
        uid_t uid = getuid();
+#endif
 
        // Check that tinc.conf is readable.