From 2ceccf84e821cad749afffa49f4dcb29ffca2e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Wed, 12 Nov 2008 04:19:29 +0000 Subject: [PATCH] make compile git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24033 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hdb/hdb.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/hdb/hdb.c b/lib/hdb/hdb.c index 79c901e56..8cf43f6e0 100644 --- a/lib/hdb/hdb.c +++ b/lib/hdb/hdb.c @@ -55,9 +55,11 @@ static struct hdb_method methods[] = { }; #if HAVE_DB1 || HAVE_DB3 -static struct hdb_method dbmetod = {"", hdb_db_create }; +static struct hdb_method dbmetod = + { HDB_INTERFACE_VERSION, "", hdb_db_create }; #elif defined(HAVE_NDBM) -static struct hdb_method dbmetod = {"", hdb_ndbm_create }; +static struct hdb_method dbmetod = + { HDB_INTERFACE_VERSION, "", hdb_ndbm_create }; #endif