diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-24 13:15:34 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-24 13:15:34 +0000 |
commit | 39cec7f698c4461aee05cfbb213879fbd486117d (patch) | |
tree | 0d71e19ec498189a14d6e6fd84bca488b866a590 /source/smbd | |
parent | 2c97b33fc0b5ef181dbf51a50cb61074935165bf (diff) | |
download | samba-39cec7f698c4461aee05cfbb213879fbd486117d.tar.gz samba-39cec7f698c4461aee05cfbb213879fbd486117d.tar.xz samba-39cec7f698c4461aee05cfbb213879fbd486117d.zip |
nterr.c :
added a structure that wraps nt errors as strings and enums, so we
can do a smb_nt_error() function.
Makefile ntclient.c :
added ntclient.c, broken out nt domain stuff into a separate file.
getting fed up of compile-times and size of client.c.
fixed the do_lsa_req_chal() function. made it read the response,
and return the challenge credentials received from the server.
next stop: do_lsa_auth_2().
client.c :
removed nt domain logon functions into a separate file.
pipenetlog.c pipentlsa.c pipesrvsvc.c smbparse.c :
i'd broken the offsets of the RPC_HDR while trying to sort out the
nt client code. fixed it again. added some robustness stuff.
util.c :
the unistrn2() function was null-terminating the string at one
character too many.
Diffstat (limited to 'source/smbd')
-rw-r--r-- | source/smbd/ipc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/ipc.c b/source/smbd/ipc.c index ebfa564f6e4..61b282fd420 100644 --- a/source/smbd/ipc.c +++ b/source/smbd/ipc.c @@ -2978,7 +2978,7 @@ static int named_pipe(int cnum,uint16 vuid, char *outbuf,char *name, int suwcnt,int tdscnt,int tpscnt, int msrcnt,int mdrcnt,int mprcnt) { - DEBUG(3,("named pipe command on <%s> name\n")); + DEBUG(3,("named pipe command on <%s> name\n", name)); if (strequal(name,"LANMAN")) { |