]> the.earth.li Git - onak.git/blobdiff - keydb_file.c
Drop "autoreconf -i" for Travis CI now we're using CMake
[onak.git] / keydb_file.c
index e0ed610e33cd7b976df43c01d9e5e8a216816fe9..bc3c578667a0a36e205b69567ea3e2dd953f43e2 100644 (file)
@@ -13,8 +13,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 51
- * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 #include <sys/types.h>
@@ -22,6 +21,8 @@
 #include <dirent.h>
 #include <errno.h>
 #include <fcntl.h>
+#include <inttypes.h>
+#include <stdbool.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -31,9 +32,9 @@
 #include "keydb.h"
 #include "keyid.h"
 #include "keystructs.h"
-#include "ll.h"
 #include "log.h"
 #include "mem.h"
+#include "onak.h"
 #include "onak-conf.h"
 #include "parsekey.h"
 
@@ -270,7 +271,7 @@ static void file_cleanupdb(struct onak_dbctx *dbctx)
  *
  *     This is just a no-op for flat file access.
  */
-struct onak_dbctx *keydb_file_init(bool readonly)
+struct onak_dbctx *keydb_file_init(struct onak_db_config *dbcfg, bool readonly)
 {
        struct onak_dbctx *dbctx;
 
@@ -279,7 +280,8 @@ struct onak_dbctx *keydb_file_init(bool readonly)
                return NULL;
        }
 
-       dbctx->priv = strdup(config.db_dir);
+       dbctx->config = dbcfg;
+       dbctx->priv = strdup(dbcfg->location);
 
        dbctx->cleanupdb                = file_cleanupdb;
        dbctx->starttrans               = file_starttrans;