diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-08-18 13:01:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:08 -0500 |
commit | 46003a56a8508c0b15a763b5a723bb77eba32094 (patch) | |
tree | 72438ab1568622664883df5d670a1e3825df371f /source4/libcli | |
parent | 770fb6d22d4bfeb87a35cff49b2756ea94d0979d (diff) | |
download | samba-46003a56a8508c0b15a763b5a723bb77eba32094.tar.gz samba-46003a56a8508c0b15a763b5a723bb77eba32094.tar.bz2 samba-46003a56a8508c0b15a763b5a723bb77eba32094.zip |
r1881: empty structs are not allowed by all compilers
metze
(This used to be commit 4c6c4d6bc8927b93f29beecf44aef5c228533a43)
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/ldap/ldap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/libcli/ldap/ldap.h b/source4/libcli/ldap/ldap.h index b777bb5252..da844afa3e 100644 --- a/source4/libcli/ldap/ldap.h +++ b/source4/libcli/ldap/ldap.h @@ -91,6 +91,7 @@ struct ldap_BindResponse { }; struct ldap_UnbindRequest { + uint8_t __dummy; }; enum ldap_scope { |