assert( be != NULL );
- mi = ( struct monitorinfo * )be->be_private;
+ if ( ( l = slapd_get_listeners() ) == NULL ) {
+ if ( slapMode & SLAP_TOOL_MODE ) {
+ return 0;
+ }
- if ( monitor_cache_get( mi,
- &monitor_subsys[SLAPD_MONITOR_LISTENER].mss_ndn,
- &e_listener ) ) {
#ifdef NEW_LOGGING
LDAP_LOG( OPERATION, CRIT,
"monitor_subsys_listener_init: "
- "unable to get entry '%s'\n",
- monitor_subsys[SLAPD_MONITOR_LISTENER].mss_ndn.bv_val, 0, 0 );
+ "unable to get listeners\n", 0, 0, 0 );
#else
Debug( LDAP_DEBUG_ANY,
"monitor_subsys_listener_init: "
- "unable to get entry '%s'\n%s%s",
- monitor_subsys[SLAPD_MONITOR_LISTENER].mss_ndn.bv_val,
- "", "" );
+ "unable to get listeners\n", 0, 0, 0 );
#endif
return( -1 );
}
- if ( ( l = slapd_get_listeners() ) == NULL ) {
+ mi = ( struct monitorinfo * )be->be_private;
+
+ if ( monitor_cache_get( mi,
+ &monitor_subsys[SLAPD_MONITOR_LISTENER].mss_ndn,
+ &e_listener ) ) {
#ifdef NEW_LOGGING
LDAP_LOG( OPERATION, CRIT,
"monitor_subsys_listener_init: "
- "unable to get listeners\n", 0, 0, 0 );
+ "unable to get entry '%s'\n",
+ monitor_subsys[SLAPD_MONITOR_LISTENER].mss_ndn.bv_val, 0, 0 );
#else
Debug( LDAP_DEBUG_ANY,
"monitor_subsys_listener_init: "
- "unable to get listeners\n", 0, 0, 0 );
+ "unable to get entry '%s'\n%s%s",
+ monitor_subsys[SLAPD_MONITOR_LISTENER].mss_ndn.bv_val,
+ "", "" );
#endif
return( -1 );
}