mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 15:49:34 -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,
|
attrs, attrsonly,
|
||||||
e, 0, &nentries );
|
e, 0, &nentries );
|
||||||
if ( rc ) {
|
if ( rc ) {
|
||||||
// error
|
rc = LDAP_OTHER;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
@ -213,14 +213,14 @@ monitor_back_search(
|
||||||
attrs, attrsonly,
|
attrs, attrsonly,
|
||||||
e, 1, &nentries );
|
e, 1, &nentries );
|
||||||
if ( rc ) {
|
if ( rc ) {
|
||||||
// error
|
rc = LDAP_OTHER;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
send_search_result( conn, op, LDAP_SUCCESS,
|
send_search_result( conn, op, rc,
|
||||||
NULL, NULL, NULL, NULL, nentries );
|
NULL, NULL, NULL, NULL, nentries );
|
||||||
|
|
||||||
return( 0 );
|
return( rc == LDAP_SUCCESS ? 0 : 1 );
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue