diff options
author | Volker Lendecke <vl@samba.org> | 2012-05-07 15:23:10 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-05-25 09:19:38 -0700 |
commit | 6666de1975e596990cc7b031a89ce67000093987 (patch) | |
tree | e58e1c116240d14c6bf6f436d71690280fea5a01 /source3/locking | |
parent | e2818d4a0b87bf9ff8b2dc14698fa14c7e695c23 (diff) | |
download | samba-6666de1975e596990cc7b031a89ce67000093987.tar.gz |
s3: Check for serverid_exists in rename_share_filename
Signed-off-by: Jeremy Allison <jra@samba.org>
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/locking')
-rw-r--r-- | source3/locking/locking.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/locking/locking.c b/source3/locking/locking.c index 9074d2f0c08..45074f40867 100644 --- a/source3/locking/locking.c +++ b/source3/locking/locking.c @@ -556,6 +556,10 @@ bool rename_share_filename(struct messaging_context *msg_ctx, continue; } + if (share_mode_stale_pid(d, i)) { + continue; + } + DEBUG(10,("rename_share_filename: sending rename message to " "pid %s file_id %s sharepath %s base_name %s " "stream_name %s\n", |