Author: tpot
Date: 2005-09-01 07:29:33 +0000 (Thu, 01 Sep 2005)
New Revision: 9879

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=9879

Log:
A quick check to see if nested initialisers (?) is portable across the
build farm.  I have a feeling it isn't.

Modified:
   branches/SAMBA_4_0/source/lib/ldb/modules/ldb_map.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/modules/ldb_map.c
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/modules/ldb_map.c 2005-09-01 07:07:00 UTC 
(rev 9878)
+++ branches/SAMBA_4_0/source/lib/ldb/modules/ldb_map.c 2005-09-01 07:29:33 UTC 
(rev 9879)
@@ -71,7 +71,11 @@
        {
                .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,
        },

Reply via email to