Remove extra \n.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@21166 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-06-19 00:05:50 +00:00
parent 2394eb28e3
commit dd6d82336b

View File

@@ -74,13 +74,13 @@ krb5_kdc_set_dbinfo(krb5_context context, struct krb5_kdc_configuration *c)
c->num_db++;
kdc_log(context, c, 0, "label: %s\n",
kdc_log(context, c, 0, "label: %s",
hdb_dbinfo_get_label(context, d));
kdc_log(context, c, 0, "\trealm: %s\n",
kdc_log(context, c, 0, "\trealm: %s",
hdb_dbinfo_get_realm(context, d));
kdc_log(context, c, 0, "\tdbname: %s\n",
kdc_log(context, c, 0, "\tdbname: %s",
hdb_dbinfo_get_dbname(context, d));
kdc_log(context, c, 0, "\tmkey_file: %s\n",
kdc_log(context, c, 0, "\tmkey_file: %s",
hdb_dbinfo_get_mkey_file(context, d));
}
hdb_free_dbinfo(context, &info);