diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-20 01:28:33 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-20 01:28:33 +0000 |
commit | f01e89e9e0800df912b5ee87bcacb664daa0895e (patch) | |
tree | 37fa3a31276f9404c1793ea6d613a5e421f35df0 /source4/librpc/rpc/dcerpc.c | |
parent | cd3c6c3cc7b22ab38b9f53276891ad828831a38e (diff) | |
download | samba-f01e89e9e0800df912b5ee87bcacb664daa0895e.tar.gz samba-f01e89e9e0800df912b5ee87bcacb664daa0895e.tar.bz2 samba-f01e89e9e0800df912b5ee87bcacb664daa0895e.zip |
EnumPrinterData in spoolss now works
(This used to be commit af07ca7fbcb4118f2415218d0c48798119b7c6b2)
Diffstat (limited to 'source4/librpc/rpc/dcerpc.c')
-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 bc5f38aa05..7fa24bb171 100644 --- a/source4/librpc/rpc/dcerpc.c +++ b/source4/librpc/rpc/dcerpc.c @@ -764,6 +764,7 @@ NTSTATUS dcerpc_ndr_request(struct dcerpc_pipe *p, /* retrieve the blob */ request = ndr_push_blob(push); + DEBUG(10,("rpc request data:\n")); dump_data(10, request.data, request.length); /* make the actual dcerpc request */ @@ -778,6 +779,7 @@ NTSTATUS dcerpc_ndr_request(struct dcerpc_pipe *p, goto failed; } + DEBUG(10,("rpc reply data:\n")); dump_data(10, pull->data, pull->data_size); /* pull the structure from the blob */ |