diff options
author | Jeremy Allison <jra@samba.org> | 2003-07-30 15:30:36 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-07-30 15:30:36 +0000 |
commit | f5799f2db2080633999807cbaccea923f915588d (patch) | |
tree | bd8818383fc77494a211780f50e59e6c73c0db98 /source3 | |
parent | 9dbc000ecd1aea79b2c280c6b562c76c1ab749fa (diff) | |
download | samba-f5799f2db2080633999807cbaccea923f915588d.tar.gz samba-f5799f2db2080633999807cbaccea923f915588d.tar.bz2 samba-f5799f2db2080633999807cbaccea923f915588d.zip |
Comment out mutex until I get dependencies sorted out...
Jeremy
(This used to be commit 382d1732ca8e4d0909eb5a95f7327213913da37b)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libads/kerberos_verify.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/libads/kerberos_verify.c b/source3/libads/kerberos_verify.c index 48b61cd1f2..779028c7af 100644 --- a/source3/libads/kerberos_verify.c +++ b/source3/libads/kerberos_verify.c @@ -140,6 +140,7 @@ NTSTATUS ads_verify_ticket(ADS_STRUCT *ads, const DATA_BLOB *ticket, goto out; } +#if 0 /* Lock a mutex surrounding the replay as there is no locking in the MIT krb5 * code surrounding the replay cache... */ @@ -148,6 +149,7 @@ NTSTATUS ads_verify_ticket(ADS_STRUCT *ads, const DATA_BLOB *ticket, sret = NT_STATUS_LOGON_FAILURE; goto out; } +#endif /* We need to setup a auth context with each possible encoding type in turn. */ for (i=0;enctypes[i];i++) { @@ -174,7 +176,9 @@ NTSTATUS ads_verify_ticket(ADS_STRUCT *ads, const DATA_BLOB *ticket, (unsigned int)enctypes[i], error_message(ret))); } +#if 0 release_server_mutex(); +#endif if (!auth_ok) { DEBUG(3,("ads_verify_ticket: krb5_rd_req with auth failed (%s)\n", |