mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-06 15:10:22 -05:00
Return unwillingToPerform for step 2 kerberos bind.
This commit is contained in:
parent
a56c2b59f9
commit
acb451a031
1 changed files with 4 additions and 3 deletions
|
|
@ -237,10 +237,11 @@ ldbm_back_bind(
|
|||
break;
|
||||
|
||||
case LDAP_AUTH_KRBV42:
|
||||
send_ldap_result( conn, op, LDAP_SUCCESS,
|
||||
NULL, NULL, NULL, NULL );
|
||||
send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
|
||||
NULL, "Kerberos bind step 2 not supported",
|
||||
NULL, NULL );
|
||||
/* stop front end from sending result */
|
||||
rc = 1;
|
||||
rc = LDAP_UNWILLING_TO_PERFORM;
|
||||
goto return_results;
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue