From 7a3e0a89f11f11527bc5e35310185efd210fa9ce Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 1 Sep 2005 07:29:33 +0000 Subject: r9879: A quick check to see if nested initialisers (?) is portable across the build farm. I have a feeling it isn't. (This used to be commit 7cc8df0c2f46fb9ce753e368ce645bcb69585334) --- source4/lib/ldb/modules/ldb_map.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source4/lib/ldb/modules/ldb_map.c b/source4/lib/ldb/modules/ldb_map.c index cdf0e29405..076aa4c1dc 100644 --- a/source4/lib/ldb/modules/ldb_map.c +++ b/source4/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, }, -- cgit