diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-01-17 16:23:45 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2007-01-17 16:23:45 +0000 |
commit | eecee858f56041fcec3eea37fed7efc08cadd267 (patch) | |
tree | d88b4149dd63ec63ad3f2cc021aa95a9b7623fc1 /source/smbd/reply.c | |
parent | 7bd48061416b8e5b7d857dcca1278f3d113bbce6 (diff) | |
download | samba-eecee858f56041fcec3eea37fed7efc08cadd267.tar.gz samba-eecee858f56041fcec3eea37fed7efc08cadd267.tar.xz samba-eecee858f56041fcec3eea37fed7efc08cadd267.zip |
r20854: Ok, now I think we're at a point where looking at notify starts to make sense
again :-)
Volker
Diffstat (limited to 'source/smbd/reply.c')
-rw-r--r-- | source/smbd/reply.c | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c index 2d11b3db989..4d139be98f4 100644 --- a/source/smbd/reply.c +++ b/source/smbd/reply.c @@ -1857,6 +1857,8 @@ NTSTATUS unlink_internals(connection_struct *conn, uint32 dirtype, if (SMB_VFS_UNLINK(conn,directory) == 0) { count++; + notify_fname(conn, directory, -1, + NOTIFY_ACTION_REMOVED); } } else { struct smb_Dir *dir_hnd = NULL; @@ -1913,9 +1915,14 @@ NTSTATUS unlink_internals(connection_struct *conn, uint32 dirtype, if (!NT_STATUS_IS_OK(status)) { continue; } - if (SMB_VFS_UNLINK(conn,fname) == 0) + if (SMB_VFS_UNLINK(conn,fname) == 0) { count++; - DEBUG(3,("unlink_internals: succesful unlink [%s]\n",fname)); + DEBUG(3,("unlink_internals: succesful unlink " + "[%s]\n",fname)); + notify_action(conn, directory, dname, + -1, NOTIFY_ACTION_REMOVED); + } + } CloseDir(dir_hnd); } @@ -3779,6 +3786,18 @@ BOOL rmdir_internals(connection_struct *conn, const char *directory) return False; } + { + char *parent_dir; + const char *dirname; + + if (parent_dirname_talloc(tmp_talloc_ctx(), directory, + &parent_dir, &dirname)) { + notify_action(conn, parent_dir, dirname, -1, + NOTIFY_ACTION_REMOVED); + TALLOC_FREE(parent_dir); /* Not strictly necessary */ + } + } + return True; } |