diff options
author | Sumit Bose <sbose@redhat.com> | 2010-03-29 13:41:41 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-05-16 13:28:12 -0400 |
commit | 928ff09ea3975edbf53df05a1ade365a588dc69d (patch) | |
tree | 7baf52cc9840a987fb034c77b310425380b1ee6f /src/providers/krb5 | |
parent | 5f2593e24f565b202821329f1f9cb103241d80bb (diff) | |
download | sssd-928ff09ea3975edbf53df05a1ade365a588dc69d.tar.gz sssd-928ff09ea3975edbf53df05a1ade365a588dc69d.tar.bz2 sssd-928ff09ea3975edbf53df05a1ade365a588dc69d.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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/krb5/krb5_common.c b/src/providers/krb5/krb5_common.c index bc2d3fbc..17b6511e 100644 --- a/src/providers/krb5/krb5_common.c +++ b/src/providers/krb5/krb5_common.c @@ -71,13 +71,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); |