diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-10-20 13:00:12 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-10-20 13:00:12 +1100 |
commit | 44a99898ed4c2e946634797de63c4a76394e6586 (patch) | |
tree | a13e3163e2eb870b9040ef71b27a602b1ddf9eef /source4/dsdb/samdb/ldb_modules/descriptor.c | |
parent | 08a0096ab6e81d4a1abac636c1762d3f5d0dfc8a (diff) | |
download | samba-44a99898ed4c2e946634797de63c4a76394e6586.tar.gz samba-44a99898ed4c2e946634797de63c4a76394e6586.tar.bz2 samba-44a99898ed4c2e946634797de63c4a76394e6586.zip |
s4-dsdb: fixed empty structure error on solaris8
Nadya, I'm guessing you plan on adding some real elements to this
structure later. For now I've added _dummy so the build can continue
with the Solaris C compiler.
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules/descriptor.c')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/descriptor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/descriptor.c b/source4/dsdb/samdb/ldb_modules/descriptor.c index 544fb8c49c..82f0911e2c 100644 --- a/source4/dsdb/samdb/ldb_modules/descriptor.c +++ b/source4/dsdb/samdb/ldb_modules/descriptor.c @@ -43,6 +43,7 @@ #include "param/param.h" struct descriptor_data { + int _dummy; }; struct descriptor_context { |