trim c++ style comments

This commit is contained in:
Pierangelo Masarati 2002-09-11 17:15:55 +00:00
parent 7823832770
commit ae2cd84d16

View file

@ -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 );
} }