diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-24 13:51:17 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-24 13:51:17 +0000 |
commit | be0f2e14b5d32fe29b57e4c80f8da5c9cfa66e60 (patch) | |
tree | bf22180552fa3b7ef296284c81bc9fd6d5a45d47 /source3/pipentlsa.c | |
parent | a12f04753348e6d52df1f9a2359794deacfc9007 (diff) | |
download | samba-be0f2e14b5d32fe29b57e4c80f8da5c9cfa66e60.tar.gz samba-be0f2e14b5d32fe29b57e4c80f8da5c9cfa66e60.tar.bz2 samba-be0f2e14b5d32fe29b57e4c80f8da5c9cfa66e60.zip |
nmblib.c :
adding some debug info
pipenetlog.c pipentlsa.c pipesrvsvc.c :
using unistrn2 instead of unistr2 in the SAM logon username.
wrong offset for command in request (use "reserved" field
not cancel_count. AGH i'll get there)
(This used to be commit 6d301d2cfd25b18ba18685d926d7a5bc08695b6d)
Diffstat (limited to 'source3/pipentlsa.c')
-rw-r--r-- | source3/pipentlsa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/pipentlsa.c b/source3/pipentlsa.c index 4a65b54543..9fe6058809 100644 --- a/source3/pipentlsa.c +++ b/source3/pipentlsa.c @@ -317,9 +317,9 @@ BOOL api_ntLsarpcTNP(int cnum,int uid, char *param,char *data, return True; } - DEBUG(4,("lsarpc TransactNamedPipe op %x\n",hdr.cancel_count)); + DEBUG(4,("lsarpc TransactNamedPipe op %x\n",hdr.reserved)); - switch (hdr.cancel_count) + switch (hdr.reserved) { case LSA_OPENPOLICY: { @@ -416,7 +416,7 @@ BOOL api_ntLsarpcTNP(int cnum,int uid, char *param,char *data, default: { - DEBUG(4, ("NTLSARPC, unknown code: %lx\n", hdr.cancel_count)); + DEBUG(4, ("NTLSARPC, unknown code: %lx\n", hdr.reserved)); break; } } |