diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-09-09 19:55:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:01 -0500 |
commit | 9cd63ddb5d9f4c5191a8b4b32c99de4c72344111 (patch) | |
tree | d8b356528a32e642012bd9df7e3a60c49d64b764 /source4/librpc | |
parent | 9ad5c988a4d2226c4c9a7f1f02d8ad44024c7cfd (diff) | |
download | samba-9cd63ddb5d9f4c5191a8b4b32c99de4c72344111.tar.gz samba-9cd63ddb5d9f4c5191a8b4b32c99de4c72344111.tar.xz samba-9cd63ddb5d9f4c5191a8b4b32c99de4c72344111.zip |
r10129: fix sinple ip's in wins replication, packets
metze
(This used to be commit 7492afa48db68ee29048f8e1a56ccff712a3d162)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/winsrepl.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/idl/winsrepl.idl b/source4/librpc/idl/winsrepl.idl index 986b16ce04..8adc3c9b25 100644 --- a/source4/librpc/idl/winsrepl.idl +++ b/source4/librpc/idl/winsrepl.idl @@ -27,11 +27,10 @@ interface wrepl typedef [flag(NDR_LITTLE_ENDIAN)] struct { uint32 num_ips; wrepl_ip ips[num_ips]; - ipv4address unknown; } wrepl_address_list; typedef [nodiscriminant] union { - [case(0)] wrepl_ip address; + [case(0)] ipv4address ip; [case(2)] wrepl_address_list addresses; } wrepl_addresses; @@ -42,6 +41,7 @@ interface wrepl [flag(NDR_LITTLE_ENDIAN)] uint32 group_flag; udlongr id; [switch_is(flags & 2)] wrepl_addresses addresses; + ipv4address unknown; } wrepl_wins_name; typedef struct { |