mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-09 17:19:39 +02:00
Prevent password enforcement for SASL GSSAPI
Similar fix as9b339efbc1
("Prevent password enforcement for SASL anonymous") just for SASL GSSAPI. Fixes SMACK-920. Fixes:92f4aadfdc
("[sasl] Avoid mechanisms that need a password when none is available")
This commit is contained in:
parent
993a307222
commit
817dc0ed3a
1 changed files with 4 additions and 0 deletions
|
@ -66,4 +66,8 @@ public class SASLGSSAPIMechanism extends SASLJavaXMechanism {
|
||||||
return new SASLGSSAPIMechanism();
|
return new SASLGSSAPIMechanism();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean requiresPassword() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue