]> git.sur5r.net Git - openldap/commitdiff
improve last commit
authorPierangelo Masarati <ando@openldap.org>
Tue, 4 Mar 2003 09:43:12 +0000 (09:43 +0000)
committerPierangelo Masarati <ando@openldap.org>
Tue, 4 Mar 2003 09:43:12 +0000 (09:43 +0000)
servers/slapd/tools/slapcommon.c

index 745f5dd7ffb6bff24c151a8a412da41953a8e6fb..8bb70bf7d9fb952416fa05969d5646174886a779 100644 (file)
@@ -279,15 +279,15 @@ slap_tool_init(
                        exit( EXIT_FAILURE );
                }
                
-               if ( nosubordinates == 0 ) {
+               if ( nosubordinates == 0 && dbnum > 0 ) {
 #ifdef NEW_LOGGING
                        LDAP_LOG( BACKEND, ERR, 
-"The first database does not allow %s; using the first available one\n",
-                               name, 0, 0 );
+"The first database does not allow %s; using the first available one (%d)\n",
+                               name, (int)(be - &backends[0]) + 1, 0 );
 #else
                        Debug( LDAP_DEBUG_ANY,
-"The first database does not allow %s; using the first available one\n",
-                               name, 0, 0 );
+"The first database does not allow %s; using the first available one (%d)\n",
+                               name, (int)(be - &backends[0]) + 1, 0 );
 #endif
                }