mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
Don't set bi_db_config since we have no config options
This commit is contained in:
parent
28072167c7
commit
8a197d1a6c
2 changed files with 3 additions and 1 deletions
|
|
@ -29,6 +29,7 @@
|
|||
#include "slap.h"
|
||||
#include "proto-dnssrv.h"
|
||||
|
||||
#if 0
|
||||
int
|
||||
dnssrv_back_db_config(
|
||||
BackendDB *be,
|
||||
|
|
@ -50,3 +51,4 @@ dnssrv_back_db_config(
|
|||
/* no configuration options (yet) */
|
||||
return SLAP_CONF_UNKNOWN;
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ dnssrv_back_initialize(
|
|||
|
||||
bi->bi_db_init = 0;
|
||||
bi->bi_db_destroy = 0;
|
||||
bi->bi_db_config = dnssrv_back_db_config;
|
||||
bi->bi_db_config = 0 /* dnssrv_back_db_config */;
|
||||
bi->bi_db_open = 0;
|
||||
bi->bi_db_close = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue