diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-24 04:42:05 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:46 -0500 |
commit | f04545f5d268b2e4515c463957600d562d75f9e1 (patch) | |
tree | 57de627fc2f1cdd8e5b854705639911b7be1adb9 /source4/librpc/idl/netlogon.idl | |
parent | 9078eff919bbd9e4f2ec6bbe22558b7eb2a54873 (diff) | |
download | samba-f04545f5d268b2e4515c463957600d562d75f9e1.tar.gz samba-f04545f5d268b2e4515c463957600d562d75f9e1.tar.bz2 samba-f04545f5d268b2e4515c463957600d562d75f9e1.zip |
r7872: another place we were relying on the old behaviour of value()
(This used to be commit 25a64f8946274e07ca233751bc745b160ff3e7c1)
Diffstat (limited to 'source4/librpc/idl/netlogon.idl')
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index e30bf4dc8b..8301a6cf40 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -109,7 +109,7 @@ interface netlogon typedef [flag(NDR_PAHEX)] struct { uint16 length; [value(length)] uint16 size; - [size_is(size),length_is(length)] uint8 *data; + [size_is(length),length_is(length)] uint8 *data; } netr_ChallengeResponse; typedef [flag(NDR_PAHEX)] struct { |