diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-09-01 18:55:51 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2005-09-01 18:55:51 +0000 |
commit | e7a34f9272fe368752439ba3a0fec55ad4fc7f5c (patch) | |
tree | 57252667f109f04eb5087b8d0b01c1b92fea1c94 /source/lib/ldb/modules/ldb_map.h | |
parent | beb2929b0cd4eec7850d4f113a16007a45fa9c25 (diff) | |
download | samba-e7a34f9272fe368752439ba3a0fec55ad4fc7f5c.tar.gz samba-e7a34f9272fe368752439ba3a0fec55ad4fc7f5c.tar.xz samba-e7a34f9272fe368752439ba3a0fec55ad4fc7f5c.zip |
r9912: Fix another bug in ldb_map.
Diffstat (limited to 'source/lib/ldb/modules/ldb_map.h')
-rw-r--r-- | source/lib/ldb/modules/ldb_map.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/lib/ldb/modules/ldb_map.h b/source/lib/ldb/modules/ldb_map.h index 984a4a2cd54..42eba23aa62 100644 --- a/source/lib/ldb/modules/ldb_map.h +++ b/source/lib/ldb/modules/ldb_map.h @@ -2,6 +2,7 @@ ldb database library - map backend Copyright (C) Jelmer Vernooij 2005 + Development sponsored by the Google Summer of Code program ** NOTE! The following LGPL license applies to the ldb ** library. This does NOT imply that all of Samba is released @@ -65,6 +66,9 @@ struct ldb_map_attribute struct { const char *remote_name; struct ldb_val (*convert_local) (struct ldb_module *, TALLOC_CTX *, const struct ldb_val *); + + /* an entry can have convert_remote set to NULL, as long as there as an entry with the same local_name + * that is non-NULL before it. */ struct ldb_val (*convert_remote) (struct ldb_module *, TALLOC_CTX *, const struct ldb_val *); } convert; |