This commit is contained in:
Kurt Zeilenga 2004-03-27 23:25:50 +00:00
parent d1d1a0607e
commit 6aded32c94
3 changed files with 5 additions and 7 deletions

View File

@ -39,7 +39,9 @@ dnssrv_back_bind(
op->o_req_dn.bv_val == NULL ? "" : op->o_req_dn.bv_val,
op->oq_bind.rb_method, NULL );
if( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE && op->oq_bind.rb_cred.bv_val != NULL && op->oq_bind.rb_cred.bv_len ) {
if( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE &&
op->oq_bind.rb_cred.bv_val != NULL && op->oq_bind.rb_cred.bv_len )
{
Statslog( LDAP_DEBUG_STATS,
"conn=%lu op=%lu DNSSRV BIND dn=\"%s\" provided passwd\n",
op->o_connid, op->o_opid,

View File

@ -39,9 +39,8 @@ dnssrv_back_compare(
assert( get_manageDSAit( op ) );
#endif
send_ldap_error( op, rs, LDAP_OTHER,
"Operation not supported within naming context" );
"Operation not supported within naming context" );
/* not implemented */
return 1;
}

View File

@ -46,8 +46,5 @@ dnssrv_back_db_config(
}
/* no configuration options (yet) */
{
return SLAP_CONF_UNKNOWN;
}
return 0;
return SLAP_CONF_UNKNOWN;
}