diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-08-27 02:10:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:34:39 -0500 |
commit | 02779b745fa5caceecbb480f1949a6e44f5da972 (patch) | |
tree | 8b0979a0cad5f9e486bb7f44e6ec0e3b3f35d665 /source4/include/structs.h | |
parent | 7fd36b79ebaff8821b3786725510b0d428631a0a (diff) | |
download | samba-02779b745fa5caceecbb480f1949a6e44f5da972.tar.gz samba-02779b745fa5caceecbb480f1949a6e44f5da972.tar.xz samba-02779b745fa5caceecbb480f1949a6e44f5da972.zip |
r9672: Fix build for compilers that don't like undefined-length arrays at the end of structs...
(This used to be commit c2211df586337ff68bb805801959147065040c01)
Diffstat (limited to 'source4/include/structs.h')
-rw-r--r-- | source4/include/structs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/include/structs.h b/source4/include/structs.h index 4f79ccb6577..59ab6a77da6 100644 --- a/source4/include/structs.h +++ b/source4/include/structs.h @@ -282,4 +282,5 @@ struct samba3_secrets; struct samba3_share_info; struct samba3; -struct ldb_map_mappings; +struct ldb_map_attribute; +struct ldb_map_objectclass; |