mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
Add more detail to "configured to hold" message
This commit is contained in:
parent
2b643c7d0b
commit
a67546e640
1 changed files with 4 additions and 2 deletions
|
|
@ -79,9 +79,11 @@ main( int argc, char **argv )
|
|||
|
||||
/* check backend */
|
||||
if( select_backend( e->e_ndn ) != be ) {
|
||||
fprintf( stderr, "%s: database not configured to "
|
||||
fprintf( stderr, "%s: database (%s) not configured to "
|
||||
"hold dn=\"%s\" (line=%d)\n",
|
||||
progname, e->e_dn, lineno );
|
||||
progname,
|
||||
be ? be->be_suffix[0] : "<none>",
|
||||
e->e_dn, lineno );
|
||||
rc = EXIT_FAILURE;
|
||||
entry_free( e );
|
||||
if( continuemode ) continue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue