diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/close.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/smbd/close.c b/source3/smbd/close.c index 94923b6db2..024a3c03e4 100644 --- a/source3/smbd/close.c +++ b/source3/smbd/close.c @@ -119,7 +119,7 @@ void close_file(files_struct *fsp, BOOL normal_close) del_share_mode(token, fsp); } - if(fd_attempt_close(fsp->fd_ptr) == 0) + if(fd_attempt_close(fsp) == 0) last_reference = True; fsp->fd_ptr = NULL; @@ -144,8 +144,7 @@ void close_file(files_struct *fsp, BOOL normal_close) if (normal_close && last_reference && delete_on_close) { DEBUG(5,("close_file: file %s. Delete on close was set - deleting file.\n", fsp->fsp_name)); - if(dos_unlink(fsp->fsp_name) != 0) { - + if(fsp->conn->vfs_ops.unlink(dos_to_unix(fsp->fsp_name, False)) != 0) { /* * This call can potentially fail as another smbd may have * had the file open with delete on close set and deleted |