From 0c7f4c3a6ec880cd7c651aae06075599fcc1ed71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 14 Dec 2007 12:22:38 +0000 Subject: [PATCH] Add hdb_default_db(). git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22306 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hdb/dbinfo.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/lib/hdb/dbinfo.c b/lib/hdb/dbinfo.c index f0846a373..94d8a0e7f 100644 --- a/lib/hdb/dbinfo.c +++ b/lib/hdb/dbinfo.c @@ -239,7 +239,7 @@ hdb_free_dbinfo(krb5_context context, struct hdb_dbinfo **dbp) /** * Return the directory where the hdb database resides. - + * * @param context Kerberos 5 context. * * @return string pointing to directory. @@ -250,3 +250,17 @@ hdb_db_dir(krb5_context context) { return HDB_DB_DIR; } + +/** + * Return the default hdb database resides. + * + * @param context Kerberos 5 context. + * + * @return string pointing to directory. + */ + +const char * +hdb_default_db(krb5_context context) +{ + return HDB_DEFAULT_DB; +}