From 6001bd4c46b5b5bda423c314de0bb68a4b55ab1d Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Sun, 4 Apr 1999 07:03:47 +0000 Subject: Use VFS operations for file I/O. Modified invocations of fd_attempt_close as it now takes a fsp instead of a fd. (This used to be commit ef24fcb7b2248aae9c3f1fb4df7466b5ae35f5ce) --- source3/smbd/close.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source3/smbd/close.c') 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 -- cgit