struct monitorentrypriv *mp;
char buf[ BACKMONITOR_BUFSIZE ];
int i;
+ struct berval bv_zero = BER_BVC("0");
assert( be != NULL );
return( -1 );
}
+ attr_merge_one( e_op, mi->mi_ad_monitorOpInitiated, &bv_zero, NULL );
+ attr_merge_one( e_op, mi->mi_ad_monitorOpCompleted, &bv_zero, NULL );
+
e_tmp = NULL;
for ( i = SLAP_OP_LAST; i-- > 0; ) {
)
{
struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
- long nInitiated = -1, nCompleted = -1;
+ long nInitiated = 0, nCompleted = 0;
char *rdnvalue;
int i;
Attribute *a;
rdnvalue = e->e_dn + ( sizeof( "cn=" ) - 1 );
- for (i = 0; i < SLAP_OP_LAST; i++ ) {
- if ( strncmp( rdnvalue, bv_op[ i ].bv_val,
- bv_op[ i ].bv_len ) == 0 ) {
- nInitiated = num_ops_initiated_[ i ];
- nCompleted = num_ops_completed_[ i ];
- break;
+ if ( strncmp( rdnvalue, SLAPD_MONITOR_OPS_NAME,
+ sizeof( SLAPD_MONITOR_OPS_NAME ) - 1 ) == 0 )
+ {
+ for ( i = 0; i < SLAP_OP_LAST; i++ ) {
+ nInitiated += num_ops_initiated_[ i ];
+ nCompleted += num_ops_completed_[ i ];
+ }
+
+ } else {
+ for ( i = 0; i < SLAP_OP_LAST; i++ ) {
+ if ( strncmp( rdnvalue, bv_op[ i ].bv_val,
+ bv_op[ i ].bv_len ) == 0 )
+ {
+ nInitiated = num_ops_initiated_[ i ];
+ nCompleted = num_ops_completed_[ i ];
+ break;
+ }
}
- }
- if ( i == SLAP_OP_LAST ) {
- return( 0 );
+ if ( i == SLAP_OP_LAST ) {
+ /* not found ... */
+ return( 0 );
+ }
}
a = attr_find( e->e_attrs, mi->mi_ad_monitorOpInitiated );