diff options
author | Andreas Schneider <asn@samba.org> | 2011-01-19 23:11:32 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2011-01-26 14:20:37 -0800 |
commit | f6f0dac4271b2bd1304c2b592c4d2dcbc795afaf (patch) | |
tree | 01372752fc8dd471efd2b49938295aa9b430d284 /source3 | |
parent | 2c47368d682ee908e79bc43d5c865049397440e1 (diff) | |
download | samba-f6f0dac4271b2bd1304c2b592c4d2dcbc795afaf.tar.gz samba-f6f0dac4271b2bd1304c2b592c4d2dcbc795afaf.tar.bz2 samba-f6f0dac4271b2bd1304c2b592c4d2dcbc795afaf.zip |
s3-modules: Fixed the for-loop code block.
s3-modules: Fixed the for-loop code block.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/onefs_cbrl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/modules/onefs_cbrl.c b/source3/modules/onefs_cbrl.c index 33f35a7f34..203710ec5a 100644 --- a/source3/modules/onefs_cbrl.c +++ b/source3/modules/onefs_cbrl.c @@ -128,6 +128,7 @@ static struct blocking_lock_record *onefs_cbrl_find_blr(uint64_t id) onefs_cbrl_blr_state_str(blr))); break; } + } } else { for (blr = sconn->smb1.locks.blocking_lock_queue; blr; blr = blr->next) { bs = (struct onefs_cbrl_blr_state *)blr->blr_private; |