(hdb_db_dir): Return the directory where the hdb database resides.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22208 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-12-07 18:21:47 +00:00
parent ec7292a944
commit 25d04f4314

View File

@@ -236,3 +236,17 @@ hdb_free_dbinfo(krb5_context context, struct hdb_dbinfo **dbp)
}
*dbp = NULL;
}
/**
* Return the directory where the hdb database resides.
* @param context Kerberos 5 context.
*
* @return string pointing to directory.
*/
const char *
hdb_db_dir(krb5_context context)
{
return HDB_DB_DIR;
}