summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-06-08 15:40:23 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:17:50 -0500
commit7104da3e8f678c85c17c74476ab64391067e72fe (patch)
tree10d3da4cf98d5f9d7142450afef20e4144dedd13
parent729c7528e63a68226c16f23e73d2a31c3d1815f4 (diff)
downloadsamba-7104da3e8f678c85c17c74476ab64391067e72fe.tar.gz
samba-7104da3e8f678c85c17c74476ab64391067e72fe.tar.bz2
samba-7104da3e8f678c85c17c74476ab64391067e72fe.zip
r7399: Try to get the AIX compile one step further.
Volker (This used to be commit 75dbd2069335af95b225716e06ea594013dea895)
-rw-r--r--source4/librpc/idl/nbt.idl6
1 files changed, 2 insertions, 4 deletions
diff --git a/source4/librpc/idl/nbt.idl b/source4/librpc/idl/nbt.idl
index b9061778bf..a7a5256752 100644
--- a/source4/librpc/idl/nbt.idl
+++ b/source4/librpc/idl/nbt.idl
@@ -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;