Add some braces to if statement.
authorMichael Adam <obnox@samba.org>
Mon, 7 Jan 2008 09:41:09 +0000 (10:41 +0100)
committerMichael Adam <obnox@samba.org>
Mon, 7 Jan 2008 09:41:09 +0000 (10:41 +0100)
Michael
(This used to be commit 66fc1db1d19d11792d9506b06ad914d88b7e0663)

source3/winbindd/winbindd_cache.c

index 62a68aa8aafd38b497ca20b8512a29a25d2be3d4..9602a128a6a1fb6200319583dd42a37d9f5a7c8d 100644 (file)
@@ -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;