Don't defer abandon due to pending

This commit is contained in:
Kurt Zeilenga 2004-02-10 00:17:21 +00:00
parent 3c1b2ed9cb
commit 5d0f6e75b4

View file

@ -1628,7 +1628,7 @@ connection_input(
defer = "too many executing";
} else if (conn->c_conn_state == SLAP_C_BINDING ) {
defer = "binding";
} else if (conn->c_n_ops_pending) {
} else if (tag != LDAP_REQ_ABANDON && conn->c_n_ops_pending) {
defer = "pending operations";
}