diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-09-01 18:55:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:36:21 -0500 |
commit | 4f4dae05f03c76b81cbc71ee80f7f1a34644936f (patch) | |
tree | eb7c525a2bbef9b86bb785985788fdd4ef901db7 /source4/lib/ldb/modules/ldb_map.h | |
parent | ca6c0af86f3bbefbc29c4bf4815da963ca857cef (diff) | |
download | samba-4f4dae05f03c76b81cbc71ee80f7f1a34644936f.tar.gz samba-4f4dae05f03c76b81cbc71ee80f7f1a34644936f.tar.bz2 samba-4f4dae05f03c76b81cbc71ee80f7f1a34644936f.zip |
r9912: Fix another bug in ldb_map.
(This used to be commit 4c3b37d660e798764e35a31221f4939ab6f36948)
Diffstat (limited to 'source4/lib/ldb/modules/ldb_map.h')
-rw-r--r-- | source4/lib/ldb/modules/ldb_map.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/lib/ldb/modules/ldb_map.h b/source4/lib/ldb/modules/ldb_map.h index 984a4a2cd5..42eba23aa6 100644 --- a/source4/lib/ldb/modules/ldb_map.h +++ b/source4/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; |