summaryrefslogtreecommitdiff
path: root/source3/smbd/notify.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-10-27 23:30:25 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:05:13 -0500
commitc0dad16e0ff95a800dfbe11ca3c6303d882687a9 (patch)
tree3afc606e14da0f86c12c645e65c0f3e4fd4da57b /source3/smbd/notify.c
parent533da83852b13c2e008938a026f99937ef320f3c (diff)
downloadsamba-c0dad16e0ff95a800dfbe11ca3c6303d882687a9.tar.gz
samba-c0dad16e0ff95a800dfbe11ca3c6303d882687a9.tar.bz2
samba-c0dad16e0ff95a800dfbe11ca3c6303d882687a9.zip
r11344: I don't think share mode conflicts occur on deleting
a directory when you've got permissions. Need to write a smbtorture test for this. Jeremy. (This used to be commit e959a5be393eb59b8987eb6967a2ee5d11978f41)
Diffstat (limited to 'source3/smbd/notify.c')
-rw-r--r--source3/smbd/notify.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/smbd/notify.c b/source3/smbd/notify.c
index ad49dc0a21..bc76cfb322 100644
--- a/source3/smbd/notify.c
+++ b/source3/smbd/notify.c
@@ -82,13 +82,14 @@ static void change_notify_remove(struct change_notify *cnbp)
Delete entries by fnum from the change notify pending queue.
*****************************************************************************/
-void remove_pending_change_notify_requests_by_fid(files_struct *fsp)
+void remove_pending_change_notify_requests_by_fid(files_struct *fsp, NTSTATUS status)
{
struct change_notify *cnbp, *next;
for (cnbp=change_notify_list; cnbp; cnbp=next) {
next=cnbp->next;
if (cnbp->fsp->fnum == fsp->fnum) {
+ change_notify_reply_packet(cnbp->request_buf,status);
change_notify_remove(cnbp);
}
}
@@ -116,7 +117,7 @@ void remove_pending_change_notify_requests_by_mid(int mid)
Always send reply.
*****************************************************************************/
-void remove_pending_change_notify_requests_by_filename(files_struct *fsp)
+void remove_pending_change_notify_requests_by_filename(files_struct *fsp, NTSTATUS status)
{
struct change_notify *cnbp, *next;
@@ -127,7 +128,7 @@ void remove_pending_change_notify_requests_by_filename(files_struct *fsp)
* the filename are identical.
*/
if((cnbp->fsp->conn == fsp->conn) && strequal(cnbp->fsp->fsp_name,fsp->fsp_name)) {
- change_notify_reply_packet(cnbp->request_buf,NT_STATUS_CANCELLED);
+ change_notify_reply_packet(cnbp->request_buf,status);
change_notify_remove(cnbp);
}
}