mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 07:39:35 -05:00
trim c++ style comments
This commit is contained in:
parent
7823832770
commit
ae2cd84d16
1 changed files with 4 additions and 4 deletions
|
|
@ -195,7 +195,7 @@ monitor_back_search(
|
|||
attrs, attrsonly,
|
||||
e, 0, &nentries );
|
||||
if ( rc ) {
|
||||
// error
|
||||
rc = LDAP_OTHER;
|
||||
}
|
||||
|
||||
break;
|
||||
|
|
@ -213,14 +213,14 @@ monitor_back_search(
|
|||
attrs, attrsonly,
|
||||
e, 1, &nentries );
|
||||
if ( rc ) {
|
||||
// error
|
||||
rc = LDAP_OTHER;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
send_search_result( conn, op, LDAP_SUCCESS,
|
||||
send_search_result( conn, op, rc,
|
||||
NULL, NULL, NULL, NULL, nentries );
|
||||
|
||||
return( 0 );
|
||||
return( rc == LDAP_SUCCESS ? 0 : 1 );
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue