From c2a296ae9854bfc9d27de2e5c0644b74e92a11db Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Sun, 18 Mar 2012 15:29:40 +0100 Subject: [PATCH] Disable config file copy for Win32 platform. --- src/csync_config.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/csync_config.c b/src/csync_config.c index d6dd0c45e5..3153ca3731 100644 --- a/src/csync_config.c +++ b/src/csync_config.c @@ -30,7 +30,6 @@ #include "csync_log.h" static int _csync_config_copy_default (const char *config) { -#ifndef _WIN32 CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE, "Copy %s/config/%s to %s", SYSCONFDIR, CSYNC_CONF_FILE, config); if (c_copy(SYSCONFDIR "/csync/" CSYNC_CONF_FILE, config, 0644) < 0) { @@ -38,7 +37,6 @@ static int _csync_config_copy_default (const char *config) { return -1; } } -#endif return 0; }