Skip to content
Snippets Groups Projects
Commit 614d936e authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

suffix must be present (ITS#3901)

parent 05825048
No related branches found
No related tags found
No related merge requests found
......@@ -270,6 +270,13 @@ bdb_db_open( BackendDB *be )
char path[MAXPATHLEN];
char *ptr;
if ( be->be_suffix == NULL ) {
Debug( LDAP_DEBUG_ANY,
"bdb_db_open: need suffix\n",
0, 0, 0 );
return -1;
}
Debug( LDAP_DEBUG_ARGS,
"bdb_db_open: %s\n",
be->be_suffix[0].bv_val, 0, 0 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment