summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-11-27 13:17:05 +0100
committerVolker Lendecke <vl@samba.org>2009-11-29 11:22:04 +0100
commit33601b8632edf65af4d4ab787c5615ab5c6af6fb (patch)
tree05fbc260d64a759d2883d547910f8a9235b58336 /source3/lib/util.c
parent129e976c47037731c9344a3994597b5781210914 (diff)
downloadsamba-33601b8632edf65af4d4ab787c5615ab5c6af6fb.tar.gz
samba-33601b8632edf65af4d4ab787c5615ab5c6af6fb.tar.bz2
samba-33601b8632edf65af4d4ab787c5615ab5c6af6fb.zip
s3: Pass fake_dir_create_times down to file_exist_stat, none of the callers look at the mtime
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index de2204074d..b074a1bd6c 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -527,13 +527,14 @@ void set_cmdline_auth_info_getpass(struct user_auth_info *auth_info)
Check if a file exists - call vfs_file_exist for samba files.
********************************************************************/
-bool file_exist_stat(const char *fname,SMB_STRUCT_STAT *sbuf)
+bool file_exist_stat(const char *fname,SMB_STRUCT_STAT *sbuf,
+ bool fake_dir_create_times)
{
SMB_STRUCT_STAT st;
if (!sbuf)
sbuf = &st;
- if (sys_stat(fname, sbuf, lp_fake_dir_create_times()) != 0)
+ if (sys_stat(fname, sbuf, fake_dir_create_times) != 0)
return(False);
return((S_ISREG(sbuf->st_ex_mode)) || (S_ISFIFO(sbuf->st_ex_mode)));