X-Git-Url: http://git.samba.org/?p=samba.git;a=blobdiff_plain;f=source3%2Fsmbd%2Fclose.c;h=024a3c03e4bb36b7077291357da990df0b77e2e5;hp=94923b6db27adcbbd0f457a0b012e4838521a0eb;hb=6001bd4c46b5b5bda423c314de0bb68a4b55ab1d;hpb=2cda53ba68782061ec3d48fcbc0580c9701dfbfb diff --git a/source3/smbd/close.c b/source3/smbd/close.c index 94923b6db27..024a3c03e4b 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