summaryrefslogtreecommitdiffstats
path: root/src/providers/krb5
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2010-03-29 13:41:41 +0200
committerStephen Gallagher <sgallagh@redhat.com>2010-04-26 09:55:10 -0400
commite3b1ebdf59b44efd1a8a8c4632ee0c8166da94a5 (patch)
tree6f2d4f0ca7290bdbfc05897ffe8612a679c05b17 /src/providers/krb5
parentb8399606d8e0890e82b67fb73bf8ba1f68cb7980 (diff)
downloadsssd-e3b1ebdf59b44efd1a8a8c4632ee0c8166da94a5.tar.gz
sssd-e3b1ebdf59b44efd1a8a8c4632ee0c8166da94a5.tar.xz
sssd-e3b1ebdf59b44efd1a8a8c4632ee0c8166da94a5.zip
New version of IPA auth and password migration
The current version modified some global structures to be able to use Kerberos and LDAP authentication during the IPA password migration. This new version only uses tevent requests. Additionally the ipaMigrationEnabled attribute is read from the IPA server to see if password migration is allowed or not.
Diffstat (limited to 'src/providers/krb5')
-rw-r--r--src/providers/krb5/krb5_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/krb5/krb5_common.c b/src/providers/krb5/krb5_common.c
index 2b3331ed3..52cbe1650 100644
--- a/src/providers/krb5/krb5_common.c
+++ b/src/providers/krb5/krb5_common.c
@@ -69,13 +69,13 @@ errno_t check_and_export_options(struct dp_option *opts,
dummy = dp_opt_get_cstring(opts, KRB5_KDC);
if (dummy == NULL) {
- DEBUG(1, ("No KDC explicitly configured, using defaults"));
+ DEBUG(1, ("No KDC explicitly configured, using defaults.\n"));
}
dummy = dp_opt_get_cstring(opts, KRB5_KPASSWD);
if (dummy == NULL) {
DEBUG(1, ("No kpasswd server explicitly configured, "
- "using the KDC or defaults"));
+ "using the KDC or defaults.\n"));
}
dummy = dp_opt_get_cstring(opts, KRB5_CCNAME_TMPL);