diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-08-31 18:33:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:36:17 -0500 |
commit | 84bfcd3c78afefd8d2869c695c116c9df7ee03c4 (patch) | |
tree | 0bd8ee8156472611ae22f25d223dba34847a47d3 /source4/lib/ldb/modules/ldb_map.h | |
parent | 0712cbdab4c397b9f74fcd681f40df9c9c2c59a8 (diff) | |
download | samba-84bfcd3c78afefd8d2869c695c116c9df7ee03c4.tar.gz samba-84bfcd3c78afefd8d2869c695c116c9df7ee03c4.tar.bz2 samba-84bfcd3c78afefd8d2869c695c116c9df7ee03c4.zip |
r9835: Make ldb_map compile in the stand-alone LDB build
(This used to be commit 2283a336e0e31e6857621d9806bba54c400bd986)
Diffstat (limited to 'source4/lib/ldb/modules/ldb_map.h')
-rw-r--r-- | source4/lib/ldb/modules/ldb_map.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/lib/ldb/modules/ldb_map.h b/source4/lib/ldb/modules/ldb_map.h index 02fec649c6..4077660160 100644 --- a/source4/lib/ldb/modules/ldb_map.h +++ b/source4/lib/ldb/modules/ldb_map.h @@ -64,21 +64,21 @@ struct ldb_map_attribute struct { const char *remote_name; - struct ldb_val (*convert_local) (struct ldb_map_context *, TALLOC_CTX *, const struct ldb_val *); - struct ldb_val (*convert_remote) (struct ldb_map_context *, TALLOC_CTX *, const struct ldb_val *); + struct ldb_val (*convert_local) (struct ldb_module *, TALLOC_CTX *, const struct ldb_val *); + struct ldb_val (*convert_remote) (struct ldb_module *, TALLOC_CTX *, const struct ldb_val *); } convert; struct { /* Generate the local attribute from remote message */ struct ldb_message_element *(*generate_local) ( - struct ldb_map_context *, + struct ldb_module *, TALLOC_CTX *ctx, const char *attr, const struct ldb_message *remote); /* Update remote message with information from local message */ void (*generate_remote) ( - struct ldb_map_context *, + struct ldb_module *, const char *local_attr, const struct ldb_message *local, struct ldb_message *remote); |