summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-09-01 07:29:33 +0000
committerTim Potter <tpot@samba.org>2005-09-01 07:29:33 +0000
commit39b24d3da85cff5a3d9c629cd0347b444ce3ae29 (patch)
treebd2701b154edbc62c127193d4468771cf8bee68d
parent0703f97cb1df66272c171d2a70aec94911638641 (diff)
downloadsamba-39b24d3da85cff5a3d9c629cd0347b444ce3ae29.tar.gz
r9879: A quick check to see if nested initialisers (?) is portable across the
build farm. I have a feeling it isn't.
-rw-r--r--source/lib/ldb/modules/ldb_map.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/lib/ldb/modules/ldb_map.c b/source/lib/ldb/modules/ldb_map.c
index cdf0e294058..076aa4c1dcf 100644
--- a/source/lib/ldb/modules/ldb_map.c
+++ b/source/lib/ldb/modules/ldb_map.c
@@ -71,7 +71,11 @@ static const struct ldb_map_attribute builtin_attribute_maps[] = {
{
.local_name = "dn",
.type = MAP_CONVERT,
- .u.convert.remote_name = "dn",
+ .u = {
+ .convert = {
+ .remote_name = "dn",
+ }
+ },
.u.convert.convert_local = map_convert_local_dn,
.u.convert.convert_remote = map_convert_remote_dn,
},