diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-23 16:17:07 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-23 16:17:07 +0000 |
commit | 203c93e9221bfa71a00165f251695cafb92f035b (patch) | |
tree | 82171a9a1eb44c26a09c86c3a45793247382fed2 /source3/smbd | |
parent | 10e186bab7f490ebb2c07a7b71cd28c06855ff17 (diff) | |
download | samba-203c93e9221bfa71a00165f251695cafb92f035b.tar.gz samba-203c93e9221bfa71a00165f251695cafb92f035b.tar.bz2 samba-203c93e9221bfa71a00165f251695cafb92f035b.zip |
general sorting out, from crashes generated by do_lsa_req_chal() in client.c
trying to set up the data parameters etc and not understanding what's going on.
in api_netlogTNP, added smb_io_rpc_hdr() call to decode the header received
(and in this instance, generated by do_lsa_req_chal()). and then noticed
that it's two bytes out. but i don't know how to do "byte parameters"
and it's not the same format as the LSA_REQCHAL received from nt workstations.
agh!
(This used to be commit 0cc8ce43e1d54b44237bb525f4cf6b77e7ca3ced)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/ipc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/ipc.c b/source3/smbd/ipc.c index 01502573fc..ebfa564f6e 100644 --- a/source3/smbd/ipc.c +++ b/source3/smbd/ipc.c @@ -2781,7 +2781,8 @@ static int api_fd_reply(int cnum,uint16 vuid,char *outbuf, fd = setup[1]; subcommand = setup[0]; - DEBUG(3,("Got API command %d on pipe %s ",subcommand,Files[fd].name)); + DEBUG(3,("Got API command %d on pipe %s (fd %x)", + subcommand,Files[fd].name, fd)); DEBUG(3,("(tdscnt=%d,tpscnt=%d,mdrcnt=%d,mprcnt=%d,cnum=%d,vuid=%d)\n", tdscnt,tpscnt,mdrcnt,mprcnt,cnum,vuid)); |