Fixed a typo where the RPC header mem_buffer was initialised as 0x8 bytes long
authorMatthew Chapman <matty@samba.org>
Tue, 23 Mar 1999 15:01:37 +0000 (15:01 +0000)
committerMatthew Chapman <matty@samba.org>
Tue, 23 Mar 1999 15:01:37 +0000 (15:01 +0000)
rather than 0x18. Rather nasty, I doubt the client ever worked for multiple
PDU's.
(This used to be commit 90b6fce780c8dff37a389493be0568923b189ff0)

source3/rpc_client/cli_pipe.c

index 9d2ee533d60cf436f7a41f66772ece923aa0d945..482dbe71cebd9df9ad37b4519de5a37ad6a41311 100644 (file)
@@ -361,7 +361,7 @@ static BOOL rpc_api_pipe(struct cli_state *cli, uint16 nt_pipe_fnum, uint16 cmd,
                int num_read;
                prs_struct hps;
 
-               prs_init(&hps, 0x8, 4, 0, True);
+               prs_init(&hps, 0x18, 4, 0, True);
 
                num_read = cli_read(cli, nt_pipe_fnum, hps.data->data, 0, 0x18);
                DEBUG(5,("rpc_api_pipe: read header (size:%d)\n", num_read));