mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged V2.1 to HEAD
6833: Kerberos web filter for the web client. 6834: Kerberos web filter for WebDAV 6835: Updates to CIFS Kerberos logon support. 6836: Fix issue with editing properties of AVM nodes and changed clipboard to use lock aware AVM service 6837: Commented out the unknown opcode reporting as it can quickly fill the log files. AR-1742. 6839: Patch to allow * and ? wildcard characters within a term in any web-client search 6840: Fixed AR-1769: InvalidNameEndingPatch fails when running on 2.1 6841: AR-1761. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6873 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -30,6 +30,7 @@ import java.io.IOException;
|
||||
import java.util.Enumeration;
|
||||
import java.util.Vector;
|
||||
|
||||
import org.alfresco.filesys.util.HexDump;
|
||||
import org.bouncycastle.asn1.ASN1EncodableVector;
|
||||
import org.bouncycastle.asn1.ASN1InputStream;
|
||||
import org.bouncycastle.asn1.DERApplicationSpecific;
|
||||
@@ -401,6 +402,14 @@ public class NegTokenInit
|
||||
str.append(" token=");
|
||||
str.append(m_mechToken.length);
|
||||
str.append(" bytes");
|
||||
|
||||
if ( m_mechToken.length > 16)
|
||||
{
|
||||
str.append(" [");
|
||||
str.append ( HexDump.hexString(m_mechToken, 0, 16, " "));
|
||||
str.append("]");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if ( m_mecListMICPrincipal != null)
|
||||
|
Reference in New Issue
Block a user