diff options
author | Jeremy Allison <jra@samba.org> | 2005-06-17 18:05:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:57:19 -0500 |
commit | 5c9963c287e20a4a4b8bbaa088328438eb4f942c (patch) | |
tree | 24424eb4f252aa3bce2192706499b57e810392c0 /source3/include | |
parent | a5808e7ddbe3d333057c44db5e76bf8ef032489a (diff) | |
download | samba-5c9963c287e20a4a4b8bbaa088328438eb4f942c.tar.gz samba-5c9963c287e20a4a4b8bbaa088328438eb4f942c.tar.bz2 samba-5c9963c287e20a4a4b8bbaa088328438eb4f942c.zip |
r7696: Don't try and be clever and read an 8 byte int and 3 pad bytes
as a uint32 - you'll just get it wrong (as I did :-).
Second attempt to fix the Apple client issues.
Jeremy.
(This used to be commit d2aa5bc7aaa9fe11fa4748f99e4ba49be08aa639)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/rpc_dce.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/rpc_dce.h b/source3/include/rpc_dce.h index 68cc55bf31..abc85035ea 100644 --- a/source3/include/rpc_dce.h +++ b/source3/include/rpc_dce.h @@ -231,7 +231,7 @@ typedef struct rpc_context { /* RPC_BIND_REQ - ms req bind */ typedef struct rpc_bind_req_info { RPC_HDR_BBA bba; - uint32 num_contexts; /* the number of contexts */ + uint8 num_contexts; /* the number of contexts */ RPC_CONTEXT *rpc_context; } RPC_HDR_RB; |