diff options
author | Jeremy Allison <jra@samba.org> | 2009-07-14 11:25:45 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-07-14 11:25:45 -0700 |
commit | d57e67f9eb5a6a05f0e173d48e86dd1fe050635e (patch) | |
tree | 4afa76c7ebeb407d9a7178f1747aafe413a9e5b7 /source3/smbd/notify_inotify.c | |
parent | 73e96935c3604d21552ba93dfd561eaf7606f52d (diff) | |
download | samba-d57e67f9eb5a6a05f0e173d48e86dd1fe050635e.tar.gz samba-d57e67f9eb5a6a05f0e173d48e86dd1fe050635e.tar.bz2 samba-d57e67f9eb5a6a05f0e173d48e86dd1fe050635e.zip |
Revert this commit :
s3: Make smbd aware of permission change of usershare. Since usershare are relatively volatile and
non-previledge users must disconnect from smbd and reconnect to it to make share permission in effect.
For now. This is a feature request and I think we need
to design it a little differently so as not to touch
core change_to_user() code.
Jeremy.
Diffstat (limited to 'source3/smbd/notify_inotify.c')
-rw-r--r-- | source3/smbd/notify_inotify.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/smbd/notify_inotify.c b/source3/smbd/notify_inotify.c index b6be69c8fd..26570a2216 100644 --- a/source3/smbd/notify_inotify.c +++ b/source3/smbd/notify_inotify.c @@ -316,9 +316,7 @@ static const struct { {FILE_NOTIFY_CHANGE_LAST_WRITE, IN_ATTRIB}, {FILE_NOTIFY_CHANGE_LAST_ACCESS, IN_ATTRIB}, {FILE_NOTIFY_CHANGE_EA, IN_ATTRIB}, - {FILE_NOTIFY_CHANGE_SECURITY, IN_ATTRIB}, - {FILE_NOTIFY_CHANGE_FILE_CONTENT, IN_MODIFY|IN_DELETE|IN_CREATE|IN_DELETE_SELF - |IN_MOVE_SELF|IN_MOVED_FROM|IN_MOVED_TO}, + {FILE_NOTIFY_CHANGE_SECURITY, IN_ATTRIB} }; static uint32_t inotify_map(struct notify_entry *e) |