diff options
author | Volker Lendecke <vl@samba.org> | 2012-02-20 16:00:50 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-02-22 15:48:06 +0100 |
commit | db17767d4d1e7ddccab899346d0374095389e370 (patch) | |
tree | 81ce530f7421e072c69f8b78d011e2ac5c234630 /source3/locking/share_mode_lock.c | |
parent | 77889f63e6cf66553e615dbe9a4eba09ad046553 (diff) | |
download | samba-db17767d4d1e7ddccab899346d0374095389e370.tar.gz |
s3: Add an error msg when a share mode entry is discarded
Diffstat (limited to 'source3/locking/share_mode_lock.c')
-rw-r--r-- | source3/locking/share_mode_lock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/locking/share_mode_lock.c b/source3/locking/share_mode_lock.c index 2152591ed27..de8cc3ce8bd 100644 --- a/source3/locking/share_mode_lock.c +++ b/source3/locking/share_mode_lock.c @@ -176,6 +176,8 @@ static struct share_mode_data *parse_share_modes(TALLOC_CTX *mem_ctx, while (i < d->num_share_modes) { struct share_mode_entry *e = &d->share_modes[i]; if (!pid_exists[i]) { + DEBUG(10, ("wipe non-existent pid %s\n", + procid_str_static(&e->pid))); *e = d->share_modes[d->num_share_modes-1]; d->num_share_modes -= 1; d->modified = True; |