diff options
author | Martin Pool <mbp@samba.org> | 2002-01-02 06:08:02 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-01-02 06:08:02 +0000 |
commit | 05ae7ca1cb4ace159e846ee2f15871f45f32ff90 (patch) | |
tree | b864aeb9673ee76ac4a6af3dd073f6cd8c15d89a | |
parent | f23cc6ab25b8b642c713b571ca77304178070339 (diff) | |
download | samba-05ae7ca1cb4ace159e846ee2f15871f45f32ff90.tar.gz samba-05ae7ca1cb4ace159e846ee2f15871f45f32ff90.tar.xz samba-05ae7ca1cb4ace159e846ee2f15871f45f32ff90.zip |
Also capture received data
(This used to be commit 93fadcd1118b390605d2504bee63a1e8b6373ac5)
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 829692ccc31..0d2f6b17e0b 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -896,6 +896,11 @@ BOOL rpc_api_pipe_req(struct cli_state *cli, uint8 op_num, ret = rpc_api_pipe(cli, 0x0026, &outgoing_packet, rdata); + /* Also capture received data */ + slprintf(dump_name, sizeof(dump_name) - 1, "reply_%s", + cli_pipe_get_name(cli)); + prs_dump(dump_name, op_num, rdata); + prs_mem_free(&outgoing_packet); return ret; |