Skip to content

Commit

Permalink
runtests.pl: Use Kerberos and SPNEGO as proxies for the crypto feature
Browse files Browse the repository at this point in the history
In addition to NTLM, use Kerberos and SPNEGO as proxies to the crypto
feature.

...and converted tab characters, from commit 4b4e8a5, to spaces.
  • Loading branch information
captain-caveman2k committed Nov 22, 2014
1 parent 2e2f981 commit 9ce5e89
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/runtests.pl
Expand Up @@ -2390,7 +2390,8 @@ sub checksystem {
if($feat =~ /NTLM/i) {
# NTLM enabled
$has_ntlm=1;
# Use this as a proxy for any cryptographic authentication

# Use this as a proxy for any cryptographic authentication
$has_crypto=1;
}
if($feat =~ /NTLM_WB/i) {
Expand All @@ -2408,10 +2409,16 @@ sub checksystem {
if($feat =~ /Kerberos/i) {
# Kerberos enabled
$has_kerberos=1;

# Use this as a proxy for any cryptographic authentication
$has_crypto=1;
}
if($feat =~ /SPNEGO/i) {
# SPNEGO enabled
$has_spnego=1;

# Use this as a proxy for any cryptographic authentication
$has_crypto=1;
}
if($feat =~ /CharConv/i) {
# CharConv enabled
Expand Down

0 comments on commit 9ce5e89

Please sign in to comment.