diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-04-28 13:06:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:51:36 -0500 |
commit | a00c266702ca81a3689996198590b5b69a967940 (patch) | |
tree | 16ef31d755354ffe33c108223fb0bfebe5837e3a /source4/lib/ldb/include/ldb.h | |
parent | b82b555b83052d74ec3eed8fbbd7cb7afd0d0462 (diff) | |
download | samba-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/include/ldb.h')
-rw-r--r-- | source4/lib/ldb/include/ldb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index ef00cdf32c..6369ab683a 100644 --- a/source4/lib/ldb/include/ldb.h +++ b/source4/lib/ldb/include/ldb.h @@ -126,8 +126,8 @@ struct ldb_backend_ops { int (*search)(struct ldb_context *, const char *, enum ldb_scope, const char *, const char *[], struct ldb_message ***); int (*search_free)(struct ldb_context *, struct ldb_message **); - int (*add)(struct ldb_context *, const struct ldb_message *); - int (*modify)(struct ldb_context *, const struct ldb_message *); + int (*add_record)(struct ldb_context *, const struct ldb_message *); + int (*modify_record)(struct ldb_context *, const struct ldb_message *); int (*delete_record)(struct ldb_context *, const char *); const char * (*errstring)(struct ldb_context *); }; |