diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-01 09:28:10 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-01 09:28:10 +0000 |
commit | a6cf6cada93640fe6a24a7d3c5403079aeb7b4de (patch) | |
tree | 7151411d9d583817a1d308168c82e54622db58cb /source4/libcli | |
parent | b4b0177fdb5f1704a7347552e48b2ab647a03d14 (diff) | |
download | samba-a6cf6cada93640fe6a24a7d3c5403079aeb7b4de.tar.gz samba-a6cf6cada93640fe6a24a7d3c5403079aeb7b4de.tar.bz2 samba-a6cf6cada93640fe6a24a7d3c5403079aeb7b4de.zip |
added netr_LogonSamLogon() and test code
(This used to be commit 4fa3ad3ecbfd8f8663fcdfaba9a7db481e303f2b)
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/auth/credentials.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/source4/libcli/auth/credentials.c b/source4/libcli/auth/credentials.c index 6df163bdfc..72572d8f91 100644 --- a/source4/libcli/auth/credentials.c +++ b/source4/libcli/auth/credentials.c @@ -143,8 +143,6 @@ BOOL clnt_deal_with_creds(uchar sess_key[8], time_t new_clnt_time; uint32 new_cred; - DEBUG(5,("clnt_deal_with_creds: %d\n", __LINE__)); - /* increment client time by one second !?! */ new_clnt_time = sto_clnt_cred->timestamp + 1; @@ -161,7 +159,6 @@ BOOL clnt_deal_with_creds(uchar sess_key[8], /* store new seed in client credentials */ SIVAL(sto_clnt_cred->cred.data, 0, new_cred); - DEBUG(5,(" new clnt cred: %s\n", credstr(sto_clnt_cred->cred.data))); return True; } |