From e71c17b2b008ba926e74dd184523723a742b76ba Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 27 Nov 2009 15:10:23 +0100 Subject: s3: "copy_reg" only looks at mode, uid, gid, atime and mtime (no birthtime) --- source3/modules/vfs_default.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 318e03ecff9..cfa10692ecc 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -487,8 +487,7 @@ static int copy_reg(const char *source, const char *dest) int ifd = -1; int ofd = -1; - if (sys_lstat (source, &source_stats, - lp_fake_dir_create_times()) == -1) + if (sys_lstat(source, &source_stats, false) == -1) return -1; if (!S_ISREG (source_stats.st_ex_mode)) -- cgit