summaryrefslogtreecommitdiff
path: root/source3/smbd/reply.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-01-09 16:12:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:17:00 -0500
commit46fdae1b6b1b8e3285447193cb10e5a2a444d431 (patch)
tree8fe77aa1bc641d008ab9feec3f11207f83cfb481 /source3/smbd/reply.c
parent87bd4d2723e806ac0bc751ccf36fcdb8ed01c03c (diff)
downloadsamba-46fdae1b6b1b8e3285447193cb10e5a2a444d431.tar.gz
samba-46fdae1b6b1b8e3285447193cb10e5a2a444d431.tar.bz2
samba-46fdae1b6b1b8e3285447193cb10e5a2a444d431.zip
r20634: A *LOT* more work is necessary before touching notify remotely starts to make
sense. Until then, remove it from the tree to keep the diff between 3_0_24 and 3_0 small. Volker (This used to be commit f146a85e74c84e78a11e616a1cbeaeef4693a0e0)
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r--source3/smbd/reply.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index cc181223f2..da7fadae3b 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -2032,8 +2032,6 @@ NTSTATUS unlink_internals(connection_struct *conn, uint32 dirtype,
if (SMB_VFS_UNLINK(conn,directory) == 0) {
count++;
- notify_fname(conn, orig_name, -1,
- NOTIFY_ACTION_REMOVED);
}
} else {
@@ -2094,9 +2092,6 @@ NTSTATUS unlink_internals(connection_struct *conn, uint32 dirtype,
}
if (SMB_VFS_UNLINK(conn,fname) == 0) {
count++;
- notify_action(
- conn, directory, dname,
- -1, NOTIFY_ACTION_REMOVED);
}
DEBUG(3,("unlink_internals: succesful unlink [%s]\n",fname));
}
@@ -3959,18 +3954,6 @@ 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;
}