diff options
Diffstat (limited to 'source3/modules/vfs_default.c')
-rw-r--r-- | source3/modules/vfs_default.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 09d9a6641f..815dc43e2d 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -394,7 +394,7 @@ static struct dirent *vfswrap_readdir(vfs_handle_struct *handle, if (ret == 0) { init_stat_ex_from_stat(sbuf, &st, - lp_fake_dir_create_times( + lp_fake_directory_create_times( SNUM(handle->conn))); } } @@ -958,7 +958,7 @@ static int vfswrap_stat(vfs_handle_struct *handle, } result = sys_stat(smb_fname->base_name, &smb_fname->st, - lp_fake_dir_create_times(SNUM(handle->conn))); + lp_fake_directory_create_times(SNUM(handle->conn))); out: END_PROFILE(syscall_stat); return result; @@ -970,7 +970,7 @@ static int vfswrap_fstat(vfs_handle_struct *handle, files_struct *fsp, SMB_STRUC START_PROFILE(syscall_fstat); result = sys_fstat(fsp->fh->fd, - sbuf, lp_fake_dir_create_times(SNUM(handle->conn))); + sbuf, lp_fake_directory_create_times(SNUM(handle->conn))); END_PROFILE(syscall_fstat); return result; } @@ -988,7 +988,7 @@ static int vfswrap_lstat(vfs_handle_struct *handle, } result = sys_lstat(smb_fname->base_name, &smb_fname->st, - lp_fake_dir_create_times(SNUM(handle->conn))); + lp_fake_directory_create_times(SNUM(handle->conn))); out: END_PROFILE(syscall_lstat); return result; |