summaryrefslogtreecommitdiff
path: root/source3
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
commitc4d3f1b0f5345086e18cb4740e7a0c4fa222089a (patch)
tree2792b8972087f34beb0f8ef3bc666420b4dd22ab /source3
parent18699d003b1d4460ffb36db61860e6c31acbf1cb (diff)
downloadsamba-c4d3f1b0f5345086e18cb4740e7a0c4fa222089a.tar.gz
samba-c4d3f1b0f5345086e18cb4740e7a0c4fa222089a.tar.bz2
samba-c4d3f1b0f5345086e18cb4740e7a0c4fa222089a.zip
Add some braces to if statement.
Michael (This used to be commit 66fc1db1d19d11792d9506b06ad914d88b7e0663)
Diffstat (limited to 'source3')
-rw-r--r--source3/winbindd/winbindd_cache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c
index 62a68aa8aa..9602a128a6 100644
--- a/source3/winbindd/winbindd_cache.c
+++ b/source3/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;