mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
s/LDAP_OPT_MATCH_STRING/LDAP_OPT_MATCHED_DN/
This commit is contained in:
parent
8c772985c7
commit
ccad4c8225
2 changed files with 2 additions and 2 deletions
|
|
@ -110,7 +110,7 @@ ldap_back_op_result(struct ldapconn *lc, Operation *op)
|
|||
|
||||
ldap_get_option(lc->ld, LDAP_OPT_ERROR_NUMBER, &err);
|
||||
ldap_get_option(lc->ld, LDAP_OPT_ERROR_STRING, &msg);
|
||||
ldap_get_option(lc->ld, LDAP_OPT_MATCH_STRING, &match);
|
||||
ldap_get_option(lc->ld, LDAP_OPT_MATCHED_DN, &match);
|
||||
send_ldap_result( lc->conn, op, err, match, msg);
|
||||
free(match);
|
||||
free(msg);
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ fail: return( ldap_back_op_result(lc, op) );
|
|||
} else {
|
||||
sres = ldap_result2error(lc->ld, res, 1);
|
||||
ldap_get_option(lc->ld, LDAP_OPT_ERROR_STRING, &err);
|
||||
ldap_get_option(lc->ld, LDAP_OPT_MATCH_STRING, &match);
|
||||
ldap_get_option(lc->ld, LDAP_OPT_MATCHED_DN, &match);
|
||||
rc = 0;
|
||||
}
|
||||
ldap_msgfree(res);
|
||||
|
|
|
|||
Loading…
Reference in a new issue