From 8fa73bb8dde4e96b4164a0d44db6d91aae75c18f Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 18 Jun 2008 16:29:14 +0200 Subject: [PATCH] Temporary fix for Samba cause smbc_chown is missing. --- modules/csync_smb.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/csync_smb.c b/modules/csync_smb.c index b9692014f2..cfe108890f 100644 --- a/modules/csync_smb.c +++ b/modules/csync_smb.c @@ -405,7 +405,10 @@ static int _chmod(const char *uri, mode_t mode) { } static int _chown(const char *uri, uid_t owner, gid_t group) { +#if 0 return smbc_chown(uri, owner, group); +#endif + return 0; } static int _utimes(const char *uri, const struct timeval *times) {