From bed9efa6cda17ecca91bdf71227ec656b94dcf94 Mon Sep 17 00:00:00 2001 From: Crístian Deives Date: Mon, 23 Nov 2009 15:47:51 -0200 Subject: s4-ldb: changed ldb_msg_add_dn() to ldb_msg_add_linearized_dn() this makes the usage clearer Signed-off-by: Andrew Tridgell --- source4/lib/ldb/include/ldb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/lib/ldb/include') diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index f2b4a48b45..88ac29d943 100644 --- a/source4/lib/ldb/include/ldb.h +++ b/source4/lib/ldb/include/ldb.h @@ -1776,8 +1776,8 @@ int ldb_msg_add_steal_string(struct ldb_message *msg, const char *attr_name, char *str); int ldb_msg_add_string(struct ldb_message *msg, const char *attr_name, const char *str); -int ldb_msg_add_dn(struct ldb_message *msg, const char *attr_name, - struct ldb_dn *dn); +int ldb_msg_add_linearized_dn(struct ldb_message *msg, const char *attr_name, + struct ldb_dn *dn); int ldb_msg_add_fmt(struct ldb_message *msg, const char *attr_name, const char *fmt, ...) PRINTF_ATTRIBUTE(3,4); -- cgit