mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Fix up handling of extended operations with no request data
This commit is contained in:
parent
ff8b039a4e
commit
902350f991
@ -107,6 +107,7 @@ do_extended(
|
||||
#else
|
||||
Debug( LDAP_DEBUG_TRACE, "do_extended\n", 0, 0, 0 );
|
||||
#endif
|
||||
|
||||
if( op->o_protocol < LDAP_VERSION3 ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
||||
@ -200,7 +201,7 @@ do_extended(
|
||||
refs = NULL;
|
||||
|
||||
rc = (ext->ext_main)( conn, op,
|
||||
reqoid.bv_val, &reqdata,
|
||||
reqoid.bv_val, reqdata.bv_val ? &reqdata : NULL,
|
||||
&rspoid, &rspdata, &rspctrls, &text, &refs );
|
||||
|
||||
if( rc != SLAPD_ABANDON ) {
|
||||
@ -294,7 +295,7 @@ find_extop( struct extop_list *list, struct berval *oid )
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
static int
|
||||
whoami_extop (
|
||||
Connection *conn,
|
||||
Operation *op,
|
||||
|
Loading…
Reference in New Issue
Block a user