summaryrefslogtreecommitdiffstats
path: root/source/winbindd
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-07 10:41:09 +0100
committerMichael Adam <obnox@samba.org>2008-01-07 10:41:09 +0100
commit66fc1db1d19d11792d9506b06ad914d88b7e0663 (patch)
treed74b8919e0c6ed9dddf249fde3f0fb564d138195 /source/winbindd
parentd0c0f91fb9f3438a18c6f47ed894f525beb75cbf (diff)
downloadsamba-66fc1db1d19d11792d9506b06ad914d88b7e0663.tar.gz
samba-66fc1db1d19d11792d9506b06ad914d88b7e0663.tar.xz
samba-66fc1db1d19d11792d9506b06ad914d88b7e0663.zip
Add some braces to if statement.
Michael
Diffstat (limited to 'source/winbindd')
-rw-r--r--source/winbindd/winbindd_cache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/winbindd/winbindd_cache.c b/source/winbindd/winbindd_cache.c
index 62a68aa8aaf..9602a128a6a 100644
--- a/source/winbindd/winbindd_cache.c
+++ b/source/winbindd/winbindd_cache.c
@@ -2362,8 +2362,9 @@ bool initialize_winbindd_cache(void)
void close_winbindd_cache()
{
- if (!wcache)
+ if (!wcache) {
return;
+ }
if (wcache->tdb) {
tdb_close(wcache->tdb);
wcache->tdb = NULL;