summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common/ldb_msg.c
diff options
context:
space:
mode:
authorCrístian Deives <cristiandeives@gmail.com>2009-11-19 16:03:59 -0200
committerAndrew Tridgell <tridge@samba.org>2009-11-20 14:39:01 +1100
commit1169dd3b50dfefa59b56cd1897bcd0b6c2ffb3be (patch)
tree5eb2495a43fc271c05d363ede0a7496169d2f6ee /source4/lib/ldb/common/ldb_msg.c
parentf3f0c8e2ce9fe315848d15eeb289eae9fb525a3a (diff)
downloadsamba-1169dd3b50dfefa59b56cd1897bcd0b6c2ffb3be.tar.gz
samba-1169dd3b50dfefa59b56cd1897bcd0b6c2ffb3be.tar.bz2
samba-1169dd3b50dfefa59b56cd1897bcd0b6c2ffb3be.zip
added new function "ldb_msg_add_dn"
a helper function to a DN element to an ldb_msg using ldb_msg_add_string. Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source4/lib/ldb/common/ldb_msg.c')
-rw-r--r--source4/lib/ldb/common/ldb_msg.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/lib/ldb/common/ldb_msg.c b/source4/lib/ldb/common/ldb_msg.c
index 161a6b1f38..375751262f 100644
--- a/source4/lib/ldb/common/ldb_msg.c
+++ b/source4/lib/ldb/common/ldb_msg.c
@@ -259,6 +259,15 @@ int ldb_msg_add_steal_string(struct ldb_message *msg,
}
/*
+ add a DN element to a message
+*/
+int ldb_msg_add_dn(struct ldb_message *msg, const char *attr_name,
+ struct ldb_dn *dn)
+{
+ return ldb_msg_add_string(msg, attr_name, ldb_dn_get_linearized(dn));
+}
+
+/*
add a printf formatted element to a message
*/
int ldb_msg_add_fmt(struct ldb_message *msg,