diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-06-13 11:32:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:23:18 -0500 |
commit | 719df44c03c54429504c9f58922f348a5cb5aafe (patch) | |
tree | 520907085f93284e5983627ca441f9126d7ad1ed | |
parent | 46906b2c754385bb87e987158dd1c657358a420a (diff) | |
download | samba-719df44c03c54429504c9f58922f348a5cb5aafe.tar.gz samba-719df44c03c54429504c9f58922f348a5cb5aafe.tar.bz2 samba-719df44c03c54429504c9f58922f348a5cb5aafe.zip |
r23466: Fix RAW-NOTIFY: by using delete on close the notify is triggered deep
inside close_file() already.
(This used to be commit 0b29e3ad0f2b1759eb195fb37f1f8667d87f5670)
-rw-r--r-- | source3/smbd/reply.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index be35099470..f2ff0b85e0 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -2012,9 +2012,6 @@ NTSTATUS unlink_internals(connection_struct *conn, uint32 dirtype, } count++; - notify_fname(conn, NOTIFY_ACTION_REMOVED, - FILE_NOTIFY_CHANGE_FILE_NAME, - directory); } else { struct smb_Dir *dir_hnd = NULL; long offset = 0; @@ -2081,9 +2078,6 @@ NTSTATUS unlink_internals(connection_struct *conn, uint32 dirtype, count++; DEBUG(3,("unlink_internals: succesful unlink [%s]\n", fname)); - notify_fname(conn, NOTIFY_ACTION_REMOVED, - FILE_NOTIFY_CHANGE_FILE_NAME, - fname); } CloseDir(dir_hnd); } |