(hdb_create): print out what we don't support

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17219 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-04-24 20:57:58 +00:00
parent c00bcb52eb
commit f5d20ae666

View File

@@ -395,6 +395,6 @@ hdb_create(krb5_context context, HDB **db, const char *filename)
h = find_dynamic_method (context, filename, &residual);
#endif
if (h == NULL)
krb5_errx(context, 1, "No database support! (hdb_create)");
krb5_errx(context, 1, "No database support for %s", filename);
return (*h->create)(context, db, residual);
}