From 929559ab2c4740b91d3a364f7dc0fad036c64e65 Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Wed, 19 Aug 2009 04:02:25 -0700 Subject: [PATCH] Switch to using krb5_config_get_list() instead of krb5_config_get() --- lib/hdb/dbinfo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/hdb/dbinfo.c b/lib/hdb/dbinfo.c index a399ab0a5..5019016ed 100644 --- a/lib/hdb/dbinfo.c +++ b/lib/hdb/dbinfo.c @@ -102,10 +102,10 @@ hdb_get_dbinfo(krb5_context context, struct hdb_dbinfo **dbp) dt = NULL; databases = NULL; - db_binding = krb5_config_get(context, NULL, krb5_config_list, - "kdc", - "database", - NULL); + db_binding = krb5_config_get_list(context, NULL, + "kdc", + "database", + NULL); if (db_binding) { ret = get_dbinfo(context, db_binding, "default", &di);