1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

r7399: Try to get the AIX compile one step further.

Volker
(This used to be commit 75dbd20693)
This commit is contained in:
Volker Lendecke 2005-06-08 15:40:23 +00:00 committed by Gerald (Jerry) Carter
parent 729c7528e6
commit 7104da3e8f

View File

@ -284,9 +284,7 @@
[switch_is(smb_command)] smb_body body;
} dgram_smb_packet;
typedef [v1_enum] enum {
DGRAM_SMB = 0xff534d42 /* 0xffSMB */
} dgram_body_type;
const uint32 DGRAM_SMB = 0xff534d42; /* 0xffSMB */
typedef [nodiscriminant] union {
[case(DGRAM_SMB)] dgram_smb_packet smb;
@ -297,7 +295,7 @@
uint16 offset;
nbt_name source_name;
nbt_name dest_name;
dgram_body_type dgram_body_type;
uint32 dgram_body_type;
[switch_is(dgram_body_type)] dgram_message_body body;
} dgram_message;