diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-08-17 01:52:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:15:38 -0500 |
commit | 9f7da6fea0bc9a330f8620d100e27d4eabbae253 (patch) | |
tree | 26967781d0e2481efba0676e27a9a414b62cc703 /source4/lib/ldb/include | |
parent | c0e60d053598a1d8cd1e3367a38a001ef7c1992a (diff) | |
download | samba-9f7da6fea0bc9a330f8620d100e27d4eabbae253.tar.gz samba-9f7da6fea0bc9a330f8620d100e27d4eabbae253.tar.bz2 samba-9f7da6fea0bc9a330f8620d100e27d4eabbae253.zip |
r17579: make ldb build g++ friendly
(This used to be commit 403cbd335594112e0c58fd68d20f0e3faad7d186)
Diffstat (limited to 'source4/lib/ldb/include')
-rw-r--r-- | source4/lib/ldb/include/ldb_private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/ldb/include/ldb_private.h b/source4/lib/ldb/include/ldb_private.h index 99b9f99fb3..754e4bc859 100644 --- a/source4/lib/ldb/include/ldb_private.h +++ b/source4/lib/ldb/include/ldb_private.h @@ -191,9 +191,9 @@ int ldb_set_attrib_handler_syntax(struct ldb_context *ldb, const char *attr, const char *syntax); /* The following definitions come from lib/ldb/common/ldb_attributes.c */ -const char **ldb_subclass_list(struct ldb_context *ldb, const char *class); -void ldb_subclass_remove(struct ldb_context *ldb, const char *class); -int ldb_subclass_add(struct ldb_context *ldb, const char *class, const char *subclass); +const char **ldb_subclass_list(struct ldb_context *ldb, const char *classname); +void ldb_subclass_remove(struct ldb_context *ldb, const char *classname); +int ldb_subclass_add(struct ldb_context *ldb, const char *classname, const char *subclass); int ldb_handler_copy(struct ldb_context *ldb, void *mem_ctx, const struct ldb_val *in, struct ldb_val *out); |