mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 02:22:05 +01: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();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean requiresPassword() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue