diff options
author | Volker Lendecke <vl@samba.org> | 2008-10-02 08:09:25 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-10-02 08:09:25 +0200 |
commit | af1c802791e3c9f54220d8c80c3de79ef422d726 (patch) | |
tree | 7f50e811c916ad3815516ec1c9b7676e72c7ffec /libcli/netlogon.h | |
parent | 8641b54a736c5c924bf38cf4574d1f8e34d2d0cd (diff) | |
download | samba-af1c802791e3c9f54220d8c80c3de79ef422d726.tar.gz samba-af1c802791e3c9f54220d8c80c3de79ef422d726.tar.bz2 samba-af1c802791e3c9f54220d8c80c3de79ef422d726.zip |
The IRIX compiler does not like embedded unnamed unions
Diffstat (limited to 'libcli/netlogon.h')
-rw-r--r-- | libcli/netlogon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcli/netlogon.h b/libcli/netlogon.h index 8bd9d0d90a..6ca3de3366 100644 --- a/libcli/netlogon.h +++ b/libcli/netlogon.h @@ -36,7 +36,7 @@ struct netlogon_samlogon_response struct NETLOGON_SAM_LOGON_RESPONSE_NT40 nt4; struct NETLOGON_SAM_LOGON_RESPONSE nt5; struct NETLOGON_SAM_LOGON_RESPONSE_EX nt5_ex; - }; + } data; }; @@ -46,7 +46,7 @@ struct nbt_netlogon_response union { struct nbt_netlogon_response_from_pdc get_pdc; struct netlogon_samlogon_response samlogon; - }; + } data; }; #include "../libcli/netlogon_proto.h" |