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; }