fs-sink: handle trace name
[babeltrace.git] / common / common.c
index 975bf6ae068d2f5d7c6a48ca2146c1dd567e9cf0..609975f7ec749bc9436f0b7889d257a7433dde9d 100644 (file)
@@ -92,11 +92,19 @@ const char *bt_common_get_system_plugin_path(void)
        return SYSTEM_PLUGIN_PATH;
 }
 
+#ifdef __MINGW32__
+BT_HIDDEN
+bool bt_common_is_setuid_setgid(void)
+{
+       return false;
+}
+#else /* __MINGW32__ */
 BT_HIDDEN
 bool bt_common_is_setuid_setgid(void)
 {
        return (geteuid() != getuid() || getegid() != getgid());
 }
+#endif /* __MINGW32__ */
 
 static
 char *bt_secure_getenv(const char *name)
This page took 0.024036 seconds and 4 git commands to generate.