summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/include
diff options
context:
space:
mode:
authorCrístian Deives <cristiandeives@gmail.com>2009-11-23 15:47:51 -0200
committerAndrew Tridgell <tridge@samba.org>2009-11-30 20:22:13 +1100
commitbed9efa6cda17ecca91bdf71227ec656b94dcf94 (patch)
tree01dded56aa27f3814e97aebc7d172be02c3cb770 /source4/lib/ldb/include
parent7ca2ceb333de6c4daad10890b3e3022e1930235c (diff)
downloadsamba-bed9efa6cda17ecca91bdf71227ec656b94dcf94.tar.gz
samba-bed9efa6cda17ecca91bdf71227ec656b94dcf94.tar.bz2
samba-bed9efa6cda17ecca91bdf71227ec656b94dcf94.zip
s4-ldb: changed ldb_msg_add_dn() to ldb_msg_add_linearized_dn()
this makes the usage clearer Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source4/lib/ldb/include')
-rw-r--r--source4/lib/ldb/include/ldb.h4
1 files changed, 2 insertions, 2 deletions
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);