summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-11-06 03:47:41 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:44:30 +0100
commit0d5c5cb3721cacf5305a91a008394c710f684588 (patch)
tree1f8eced688b1dbcbf3bd43d228050391e9b82f17 /source4/lib/ldb/common
parente3198b3acde1f737266ce2b1de738f08314d530c (diff)
downloadsamba-0d5c5cb3721cacf5305a91a008394c710f684588.tar.gz
samba-0d5c5cb3721cacf5305a91a008394c710f684588.tar.bz2
samba-0d5c5cb3721cacf5305a91a008394c710f684588.zip
r25857: Indent
(This used to be commit f42690a90c2f76e7fc130ebbdbd0f93fefacfad6)
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r--source4/lib/ldb/common/ldb_msg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/ldb/common/ldb_msg.c b/source4/lib/ldb/common/ldb_msg.c
index e9c04df55a..528d1d54f1 100644
--- a/source4/lib/ldb/common/ldb_msg.c
+++ b/source4/lib/ldb/common/ldb_msg.c
@@ -321,7 +321,8 @@ int ldb_msg_element_compare_name(struct ldb_message_element *el1,
convenience functions to return common types from a message
these return the first value if the attribute is multi-valued
*/
-const struct ldb_val *ldb_msg_find_ldb_val(const struct ldb_message *msg, const char *attr_name)
+const struct ldb_val *ldb_msg_find_ldb_val(const struct ldb_message *msg,
+ const char *attr_name)
{
struct ldb_message_element *el = ldb_msg_find_element(msg, attr_name);
if (!el || el->num_values == 0) {