diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-02-15 12:20:22 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-02-15 12:20:22 +0000 |
commit | 4aabc4cdfd7c50e37c29f253de4d08107e106a6a (patch) | |
tree | b86fee970bae0b8b6a38547ba1fbabaf4dbb9f81 /source3/libsmb/errormap.c | |
parent | ab1035aa1b93ea480b07f3a85925cf0d127606a5 (diff) | |
download | samba-4aabc4cdfd7c50e37c29f253de4d08107e106a6a.tar.gz samba-4aabc4cdfd7c50e37c29f253de4d08107e106a6a.tar.bz2 samba-4aabc4cdfd7c50e37c29f253de4d08107e106a6a.zip |
Move our NTLMSSP client code into ntlmssp.c. The intention is to provide a
relitivly useful external lib from this code, and to remove the dupicate
NTLMSSP code elsewhere in samba (RPC pipes, LDAP client).
The code I've replaced this with in cliconnect.c is relitivly ugly, and
I hope to replace it with a more general SPENGO layer at some later date.
Andrew Bartlett
(This used to be commit b2b66909ac2e251f8189e0696b6075dbf748521a)
Diffstat (limited to 'source3/libsmb/errormap.c')
-rw-r--r-- | source3/libsmb/errormap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/errormap.c b/source3/libsmb/errormap.c index 09340caccd..8ee5ee3d31 100644 --- a/source3/libsmb/errormap.c +++ b/source3/libsmb/errormap.c @@ -1410,7 +1410,7 @@ static const struct { /***************************************************************************** convert a dos eclas/ecode to a NT status32 code *****************************************************************************/ -NTSTATUS dos_to_ntstatus(int eclass, int ecode) +NTSTATUS dos_to_ntstatus(uint8 eclass, uint32 ecode) { int i; if (eclass == 0 && ecode == 0) return NT_STATUS_OK; |