summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common/ldb.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-04-28 13:06:25 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:51:36 -0500
commita00c266702ca81a3689996198590b5b69a967940 (patch)
tree16ef31d755354ffe33c108223fb0bfebe5837e3a /source4/lib/ldb/common/ldb.c
parentb82b555b83052d74ec3eed8fbbd7cb7afd0d0462 (diff)
downloadsamba-a00c266702ca81a3689996198590b5b69a967940.tar.gz
samba-a00c266702ca81a3689996198590b5b69a967940.tar.bz2
samba-a00c266702ca81a3689996198590b5b69a967940.zip
r387: more C++ friendly changes
(This used to be commit ac0c525a8b8a05cc275fb9f4c1dcfd749604c85f)
Diffstat (limited to 'source4/lib/ldb/common/ldb.c')
-rw-r--r--source4/lib/ldb/common/ldb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/common/ldb.c b/source4/lib/ldb/common/ldb.c
index 66d3696786..f61ddecdc7 100644
--- a/source4/lib/ldb/common/ldb.c
+++ b/source4/lib/ldb/common/ldb.c
@@ -101,7 +101,7 @@ int ldb_search_free(struct ldb_context *ldb, struct ldb_message **msgs)
int ldb_add(struct ldb_context *ldb,
const struct ldb_message *message)
{
- return ldb->ops->add(ldb, message);
+ return ldb->ops->add_record(ldb, message);
}
/*
@@ -110,7 +110,7 @@ int ldb_add(struct ldb_context *ldb,
int ldb_modify(struct ldb_context *ldb,
const struct ldb_message *message)
{
- return ldb->ops->modify(ldb, message);
+ return ldb->ops->modify_record(ldb, message);
}