diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-11 02:02:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-11 02:02:29 +0000 |
commit | a934f89549b3d23199d68b7dc3fc3ad16e86b9ad (patch) | |
tree | 0443067094f28b9a339a1b3875bf3cc00be5a45e /source4/librpc/rpc | |
parent | be443f914af377fc97d4cfd56f13d95edbcc645f (diff) | |
download | samba-a934f89549b3d23199d68b7dc3fc3ad16e86b9ad.tar.gz samba-a934f89549b3d23199d68b7dc3fc3ad16e86b9ad.tar.bz2 samba-a934f89549b3d23199d68b7dc3fc3ad16e86b9ad.zip |
started adding support for lsa_QueryInfoPolicy
(This used to be commit 5b2d577969103ed5c633ea993d476787af14fa93)
Diffstat (limited to 'source4/librpc/rpc')
-rw-r--r-- | source4/librpc/rpc/dcerpc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/librpc/rpc/dcerpc.c b/source4/librpc/rpc/dcerpc.c index 682735c000..97aa466e3a 100644 --- a/source4/librpc/rpc/dcerpc.c +++ b/source4/librpc/rpc/dcerpc.c @@ -800,6 +800,8 @@ NTSTATUS dcerpc_ndr_request(struct dcerpc_pipe *p, if (pull->offset != pull->data_size) { DEBUG(0,("Warning! %d unread bytes\n", pull->data_size - pull->offset)); + status = NT_STATUS_INFO_LENGTH_MISMATCH; + goto failed; } failed: |