From f2fcbf24576110c9feaf5cc07feb1c469fa9247c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Deschner?= Date: Thu, 24 Sep 2015 06:40:19 +0200 Subject: witness: fix IP address endianess in witness_IPaddrInfo IDL. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Guenther Signed-off-by: Günther Deschner Reviewed-by: Jose A. Rivera --- librpc/idl/witness.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'librpc') diff --git a/librpc/idl/witness.idl b/librpc/idl/witness.idl index febae2524a0..9645cdd5348 100644 --- a/librpc/idl/witness.idl +++ b/librpc/idl/witness.idl @@ -100,8 +100,8 @@ interface witness typedef [flag(NDR_NOALIGN|NDR_LITTLE_ENDIAN),gensize] struct { witness_IPaddrInfo_flags flags; - ipv4address ipv4; - ipv6address ipv6; + [flag(NDR_BIG_ENDIAN)] ipv4address ipv4; + [flag(NDR_BIG_ENDIAN)] ipv6address ipv6; } witness_IPaddrInfo; typedef [flag(NDR_NOALIGN|NDR_LITTLE_ENDIAN)] struct { -- cgit v1.2.1