diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-29 01:05:46 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-29 01:05:46 +0000 |
commit | b925b3d20c8e85c7b65a0ad599248443ae12905c (patch) | |
tree | e4e83832d94e809474cf74f76cb7dca583184502 /source3/client | |
parent | fe0a702322bdf3c76a517e2fd7e92a05219c49dd (diff) | |
download | samba-b925b3d20c8e85c7b65a0ad599248443ae12905c.tar.gz samba-b925b3d20c8e85c7b65a0ad599248443ae12905c.tar.bz2 samba-b925b3d20c8e85c7b65a0ad599248443ae12905c.zip |
added frag field to make_rpc_hdr() function
(This used to be commit 6b0e51929495582bc48a4d5fba24aa7c1f7caaf6)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/ntclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/ntclient.c b/source3/client/ntclient.c index d2e8973ed4..71f38fcf59 100644 --- a/source3/client/ntclient.c +++ b/source3/client/ntclient.c @@ -140,7 +140,7 @@ static BOOL do_rpc_bind(uint16 fnum) data_len = PTR_DIFF(p, data); /* create the request RPC_HDR */ - make_rpc_hdr(&hdr, RPC_BIND, call_id, PTR_DIFF(p, data + 0x10)); + make_rpc_hdr(&hdr, RPC_BIND, 0x0, call_id, PTR_DIFF(p, data + 0x10)); /* stream the header into data */ p = smb_io_rpc_hdr(False, &hdr, data, data, 4, 0); |