diff options
author | Volker Lendecke <vl@samba.org> | 2013-04-12 11:38:28 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-04-17 14:49:59 -0700 |
commit | 3d05622c560d2b481c28fa834f3fa2fde288fcce (patch) | |
tree | 486a57bfc306a19c11722189823a5f5e6b8c2982 | |
parent | a61307489c93e925ed99f0e2409984a794d74fce (diff) | |
download | samba-3d05622c560d2b481c28fa834f3fa2fde288fcce.tar.gz samba-3d05622c560d2b481c28fa834f3fa2fde288fcce.tar.xz samba-3d05622c560d2b481c28fa834f3fa2fde288fcce.zip |
vfs: Convert vfswrap_fs_capabilities to synthetic_smb_fname
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | source3/modules/vfs_default.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 8a03ea372a..8804e623ac 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -113,7 +113,6 @@ static uint32_t vfswrap_fs_capabilities(struct vfs_handle_struct *handle, uint32_t caps = FILE_CASE_SENSITIVE_SEARCH | FILE_CASE_PRESERVED_NAMES; struct smb_filename *smb_fname_cpath = NULL; struct vfs_statvfs_struct statbuf; - NTSTATUS status; int ret; ZERO_STRUCT(statbuf); @@ -127,12 +126,9 @@ static uint32_t vfswrap_fs_capabilities(struct vfs_handle_struct *handle, /* Work out what timestamp resolution we can * use when setting a timestamp. */ - status = create_synthetic_smb_fname(talloc_tos(), - conn->connectpath, - NULL, - NULL, - &smb_fname_cpath); - if (!NT_STATUS_IS_OK(status)) { + smb_fname_cpath = synthetic_smb_fname(talloc_tos(), conn->connectpath, + NULL, NULL); + if (smb_fname_cpath == NULL) { return caps; } |