diff options
author | Simo Sorce <idra@samba.org> | 2006-09-25 02:56:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:20:18 -0500 |
commit | 5e1e97a20d981d0c0f3b95fe1bc8a657183c2157 (patch) | |
tree | d183217dbf55edf34c8450115ce13117d85443b2 /source4/lib | |
parent | df83913eb1b154a07f7da85fa9d6903c0a8a08b9 (diff) | |
download | samba-5e1e97a20d981d0c0f3b95fe1bc8a657183c2157.tar.gz samba-5e1e97a20d981d0c0f3b95fe1bc8a657183c2157.tar.bz2 samba-5e1e97a20d981d0c0f3b95fe1bc8a657183c2157.zip |
r18882: make style consistent
(This used to be commit a141ee9473ae46c63dea247456f156b40f766d42)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/ldb/common/ldb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/ldb/common/ldb.c b/source4/lib/ldb/common/ldb.c index 760a311383..1e0cfec96d 100644 --- a/source4/lib/ldb/common/ldb.c +++ b/source4/lib/ldb/common/ldb.c @@ -819,7 +819,9 @@ int ldb_modify(struct ldb_context *ldb, int ret; ret = ldb_msg_sanity_check(ldb, message); - if (ret != LDB_SUCCESS) return ret; + if (ret != LDB_SUCCESS) { + return ret; + } ret = ldb_build_mod_req(&req, ldb, ldb, message, |